/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a1f3d;
  --navy-light: #1a2f4d;
  --navy-dark: #050f1d;
  --gold: #d4af37;
  --gold-light: #e4bf47;
  --gold-dark: #c49f27;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue: #60a5fa;
  --green: #34d399;
}

/* Estilos Globais */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--navy-dark);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navegação */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 61, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 31, 61, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 80px; width: auto; }

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--gray-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  z-index: 0;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
}

.hero-content { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; flex: 1; }

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.highlight { color: var(--blue); }
.highlight-gold { color: var(--gold); position: relative; display: inline-block; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  max-width: 700px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-text { flex: 1; max-width: 55%; }

.banner-img img {
  width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Botões */
.btn {
  display: inline-flex;
  width: 200px;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-600);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }


.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold); font-family: "Playfair Display", serif; }
.stat-label { font-size: 0.9rem; color: var(--gray-400); margin-top: 0.5rem; }
.stat-divider { width: 1px; background: var(--gray-700); }

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-title { font-weight: 600; color: var(--white); }

.chart-badge {
  background: rgba(52, 211, 153, 0.2);
  color: var(--green);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
}

.metric { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-300); }
.metric-dot { width: 10px; height: 10px; border-radius: 50%; }


.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnimation 2s ease-in-out infinite;
}

@keyframes scrollAnimation {
  0%, 100% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(20px); }
}

/* Trust Bar */
.trust-bar {
  background: rgba(26, 47, 77, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem 0;
}

.trust-items { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; color: var(--gray-300); font-weight: 500; }


section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}


.about { background: var(--navy); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text { font-size: 1.1rem; color: var(--gray-300); }
.lead-text { font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 1.5rem; line-height: 1.5; }
.about-text p { margin-bottom: 1.5rem; }
.about-highlight {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.highlight-icon { font-size: 2rem; flex-shrink: 0; }
.about-highlight h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.2rem; }
.about-features { display: flex; flex-direction: column; gap: 2rem; }
.feature-card {
  background: rgba(26, 47, 77, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }
.feature-number { font-family: "Playfair Display", serif; font-size: 3rem; font-weight: 700; color: var(--gold); opacity: 0.3; margin-bottom: 1rem; }
.feature-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray-400); line-height: 1.6; }


.services { background: var(--navy-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}
.service-card {
  background: rgba(26, 47, 77, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}
.service-icon .feature-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.8;
}
.service-card.featured {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card h3 { color: #d4af37; font-size: 1.5rem; margin-bottom: 1rem; }
.service-card > p { color: var(--gray-400); font-size: 18px; margin-bottom: 1.5rem; line-height: 1.6; }
.service-list { list-style: none; padding: 0; }
.service-list li {
  color: var(--gray-400);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}
.services-cta { text-align: center; }
.projects-grid .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 340px;
  padding: 2rem 1rem;
}
.projects-grid .service-card h3 { margin-top: auto; margin-bottom: 0.5rem; }
.projects-grid .service-card p { margin-bottom: 0; }


.team { background: var(--navy); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 1fr)); gap: 3rem; }
.team-member {
  background: rgba(26, 47, 77, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.team-member:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-color: var(--gold); }
.member-image { position: relative; height: 400px; overflow: hidden; }
.member-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-member:hover .member-image img { transform: scale(1.1); }
.member-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10, 31, 61, 0.9) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.3s ease;
}
.team-member:hover .member-overlay { opacity: 1; }
.member-social { display: flex; gap: 1rem; }
.social-link { color: var(--gold); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.social-link:hover { color: var(--gold-light); }
.member-content { padding: 2rem; }
.member-name { font-family: "Playfair Display", serif; font-size: 1.8rem; color: var(--white); margin-bottom: 0.5rem; }
.member-role { color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.member-bio { color: var(--gray-300); line-height: 1.6; margin-bottom: 1.5rem; }
.member-expertise { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.expertise-tag { background: rgba(212, 175, 55, 0.1); color: var(--gold); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 500; }
.member-details { border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 1.5rem; }
.member-details h4 { color: var(--white); margin-bottom: 0.75rem; margin-top: 1rem; }
.member-details h4:first-child { margin-top: 0; }
.member-details ul { list-style: none; padding: 0; }
.member-details li {
  color: var(--gray-400); padding: 0.4rem 0; padding-left: 1.5rem; position: relative;
}
.member-details li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }


.testimonials { background: var(--navy-dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: rgba(26, 47, 77, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2); border-color: var(--gold); }
.testimonial-rating { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-text { color: var(--gray-200); font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimonial-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.author-name { color: var(--white); font-weight: 600; font-size: 1.1rem; }
.author-role { color: var(--gray-400); font-size: 0.9rem; }
.testimonial-metric {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 10px;
}
.metric-value { font-family: "Playfair Display", serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.metric-label { color: var(--gray-400); font-size: 0.9rem; }


.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); border-top: 1px solid rgba(212, 175, 55, 0.2); border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-text { font-size: 1.2rem; color: var(--gray-300); margin-bottom: 2rem; }
.cta-benefits { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.benefit-item { display: flex; align-items: center; gap: 0.5rem; color: var(--gray-300); }

.contact { background: var(--navy); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-title { font-family: "Playfair Display", serif; font-size: 2.5rem; color: var(--white); margin-bottom: 1rem; }
.contact-subtitle { color: var(--gray-300); font-size: 1.1rem; margin-bottom: 3rem; }
.contact-details { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon {
  width: 50px; height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 0.25rem; }
.contact-value { color: var(--white); font-weight: 600; font-size: 1.1rem; text-decoration: none; }
.contact-value:hover { color: var(--gold); }
.contact-cta-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 2rem;
}
.contact-cta-box h3 { color: var(--gold); margin-bottom: 0.5rem; }
.contact-cta-box p { color: var(--gray-300); margin-bottom: 1.5rem; }
.btn-whatsapp, .btn-mensagem {
  font-size: 20px;
  background: #25d366;
  color: white;
  width: 30%;
  justify-content: center;
  text-align: center;
}
.btn-mensagem { font-size: 14px; }
.btn-mensagem:hover, .btn-whatsapp:hover { background: #20ba5a; transform: translateY(-2px); }
.contact-form-wrapper {
  background: rgba(26, 47, 77, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { color: var(--gray-300); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(10, 31, 61, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }


.footer { background: var(--navy-dark); border-top: 1px solid rgba(212, 175, 55, 0.2); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { max-width: 400px; }
.footer-logo { height: 100px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--gray-400); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-column h4 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-column ul { list-style: none; padding: 0; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: var(--gray-400); text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(212, 175, 55, 0.1); color: var(--gray-500); }
.client-logo { width: 220px; height: auto; margin-bottom: 1rem; display: block; margin-left: auto; margin-right: auto; filter: grayscale(100%); transition: filter 0.3s ease; }
.client-logo:hover { filter: grayscale(0%); }


.projects-grid { grid-template-columns: repeat(3, 1fr); max-width: 1280px; }
@media (max-width: 992px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

/* animações */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* Responsividade */

/* Hero Responsivo */
@media (max-width: 968px) {
  .hero-inner {
    padding-top: 12rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .hero-text { max-width: 100%; }
  .banner-img img { width: 90%; max-width: 400px; height: auto; }
  .hero-cta { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}

/* Botão WhatsApp Responsivo */
@media (max-width: 640px) {
  .btn-whatsapp { width: 80%; font-size: 16px; }
  .btn-mensagem { width: 80%; font-size: 14px; }
}


@media (max-width: 968px) {
  .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: rgba(10, 31, 61, 0.98); flex-direction: column; padding: 2rem; transition: left 0.3s ease; }
  .nav-menu.active { left: 0; }
  .nav-toggle { display: flex; }
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .footer-content { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 6rem 1rem 3rem; }
  .hero-stats { gap: 2rem; }
  .stat-divider { display: none; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trust-items { gap: 2rem; }
  .cta-benefits { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
}
