/* ════════════════════════════════════════════
   GÊNESIS CARGAS — style.css
   Paleta: Verde escuro / Laranja / Branco / Cinza
════════════════════════════════════════════ */

:root {
  --green-dark:  #0d2b1f;
  --green-mid:   #163d2b;
  --green-light: #1e5c3a;
  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --text:        #111827;

  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.18);
  --transition:  .25s cubic-bezier(.4,0,.2,1);

  --container:   1200px;
  --nav-h:       72px;
}

/* ── Reset & Base ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ── Typography ───────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label.small { font-size: 10px; margin-bottom: 10px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 48px;
}
.highlight { color: var(--orange); }
.green { color: #16a34a; }

/* ── Buttons ──────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,.35); }
.btn-primary.large { font-size: 15px; padding: 14px 28px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-outline.large { font-size: 15px; padding: 14px 28px; }

/* outline dark (FAQ footer) */
.faq-footer .btn-outline {
  color: var(--gray-800);
  border-color: var(--gray-200);
}
.faq-footer .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  transition: background var(--transition), color var(--transition);
}
.btn-icon:hover { background: rgba(255,255,255,.1); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img.hero-map {
  position: absolute;
  right: -5%; /* Ajusta o alinhamento para sangrar levemente a borda direita */
  top: 50%;
  transform: translateY(-50%);
  width: 90%; /* Aumenta a largura para ocupar quase toda a tela */
  max-width: none; /* Remove a limitação de 700px que estava encolhendo a imagem */
  opacity: 0.85;
  mix-blend-mode: screen; /* Mágica: remove o fundo do JPEG e mistura o mapa perfeitamente com a cor do site */
  filter: drop-shadow(0 0 60px rgba(249,115,22,.25));
  animation: floatMap 6s ease-in-out infinite;
}

@keyframes floatMap {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-52%) translateX(-8px); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,43,31,.97) 45%, rgba(13,43,31,.5) 75%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 160px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 99px;
}
.hero-text h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 620px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
}
.stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-plus { color: var(--orange); }
.stat span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}

/* Brand Watermark */
.hero-brand-watermark {
  position: absolute;
  bottom: 60px; left: 0; right: 0;
  z-index: 0;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: .06em;
  pointer-events: none;
  user-select: none;
}

/* ════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════ */
.services { background: var(--off-white); }
.services .section-title,
.services .section-sub { text-align: center; }
.services .section-label { display: block; text-align: center; }
.services .section-sub { margin-left: auto; margin-right: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.service-card:hover .service-bg {
  transform: scale(1.06);
}

.service-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background 0.4s ease;
}
.service-card:hover .service-overlay {
  background: rgba(13, 43, 31, 0.9); /* Verde escuro da sua paleta ao passar o mouse */
}

/* Conteúdo que aparece no Hover */
.service-hover-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 85px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.service-card:hover .service-hover-content {
  opacity: 1;
  transform: translateY(0);
}

.hover-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hover-icon-circle svg { width: 24px; height: 24px; }

.service-hover-content p {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  margin: 0;
}

/* Conteúdo do Rodapé do Card */
.service-bottom {
  position: relative;
  z-index: 3;
  padding: 24px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 18px; height: 18px; }

.service-header h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.service-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin: 0;
}

/* ════════════════════════════════════════
   PRESENÇA NACIONAL
════════════════════════════════════════ */
.presence { background: var(--off-white); }
.presence-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* Divide a tela equilibrando os dois lados */
  gap: 60px;
  align-items: center;
}

.section-label.pill-gray {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.section-label.pill-green {
  background: #d1fae5;
  color: #059669;
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.green-text { color: #059669; }

.presence-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.presence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
}
.pstat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pstat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pstat strong {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  color: var(--text);
}
.pstat span {
  font-size: 13px;
  color: var(--gray-600);
}

/* Cartão da Direita */
.presence-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

/* Container do Mapa */
.presence-map {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/* A mágica das cores: Personalizando o Web Component com cores vivas */
brazil-component {
  width: 100%;
  max-width: 420px;
  
  /* Cores Vivas: Azul Petróleo (fundo) e Laranja Vibrante (hover) */
  --brazil-bg-color: #059669;        /* Azul Petróleo Profundo */
  --brazil-bg-hover-color: #f97316;  /* Laranja Vibrante */
  --brazil-stroke-color: #ffffff;    /* Linha de separação branca */
  --brazil-stroke-hover-color: #ffffff;

  /* Mantém as mesmas cores para o modo escuro */
  --brazil-bg-color-dark: #059669; 
  --brazil-bg-hover-color-dark: #f97316; 
  --brazil-stroke-color-dark: #ffffff;
  --brazil-stroke-hover-color-dark: #ffffff;
  
  filter: drop-shadow(0 10px 24px rgba(30, 58, 138, 0.25));
  transition: all 0.3s ease;
}

/* O Destaque na Tag (Hover na Tag ou ativado pelo JS quando clica no mapa) */
.states-badges.light-green span:hover,
.states-badges.light-green span.active-state {
  transform: translateY(-4px); 
  background: #f97316; /* Laranja também nas tags para combinar */
  color: #ffffff; 
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.section-label.small.dark {
  color: var(--gray-600);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.states-badges.light-green {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Estilo das Tags dos Estados */
.states-badges.light-green span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 30px;
  background: #d1fae5;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* O Destaque na Tag (Hover na Tag ou ativado pelo JS quando clica no mapa) */
.states-badges.light-green span:hover,
.states-badges.light-green span.active-state {
  transform: translateY(-4px); /* O saltinho na tag */
  background: #059669; /* Fica verde escuro */
  color: #ffffff; /* Letra branca */
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25); /* Sombra elegante */
}

/* ════════════════════════════════════════
   MODALIDADES
════════════════════════════════════════ */
.modalities { background: var(--off-white); }

/* Novo Cabeçalho Centralizado */
.mod-header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.pill-gray {
  background: #e2e8f0; /* Cinza bem suave */
  color: #475569; /* Cinza escuro para o texto */
  padding: 6px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block; /* Impede que estique a tela toda */
  margin-bottom: 20px;
}

.mod-title {
  font-family: 'Barlow', sans-serif; /* Usando a fonte normal, não a condensada */
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.mod-sub {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.mod-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.mod-tabs {
  display: inline-flex;
  background: var(--gray-200);
  border-radius: 99px;
  padding: 4px;
  gap: 4px;
}
.mod-tab {
  padding: 8px 24px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: transparent;
  border: none;
  transition: all var(--transition);
}
.mod-tab.active,
.mod-tab:hover { 
  background: var(--white); 
  color: var(--text); 
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); 
}

.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.mod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mod-card.hidden { display: none; }

.mod-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
}
.mod-badge.orange { 
  background: var(--orange); 
  color: var(--white);
}

.mod-img { position: relative; height: 240px; overflow: hidden; }
.mod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mod-card:hover .mod-img img { transform: scale(1.04); }

.mod-body { 
  padding: 24px; 
  flex-grow: 1; 
}
.mod-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mod-icon-box {
  width: 28px;
  height: 28px;
  background: #d1fae5;
  color: #059669;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mod-icon-box svg { width: 14px; height: 14px; }

.mod-body h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  color: var(--text);
}
.mod-body p { 
  font-size: 13px; 
  color: var(--gray-600); 
  line-height: 1.55; 
  margin: 0; 
}

.mod-footer {
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fdfdfd;
}
.mod-footer-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mod-footer-col.text-right { text-align: right; }

.mod-label {
  font-size: 11px;
  color: var(--gray-400);
}
.mod-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.mod-value.green-text {
  color: #059669;
}

/* ════════════════════════════════════════
   CTA SPLIT BANNER
════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--white);
}

/* Lado Esquerdo - Imagem */
.cta-left-pane {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 60px;
}
.cta-split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cta-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  z-index: 2;
}
.cta-left-content {
  position: relative;
  z-index: 3;
}
.cta-left-content h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}

/* Lado Direito - Conteúdo Branco */
.cta-right-pane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}
.cta-right-inner {
  max-width: 480px;
  width: 100%;
}
.cta-right-inner h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.cta-right-inner p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Lista de Ícones Verde Água */
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.cta-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
}

/* Botão Verde em Pílula */
.btn-green-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00a97f; /* Tom de verde do botão original */
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 99px;
  transition: background var(--transition), transform var(--transition);
}
.btn-green-pill:hover {
  background: #008f6b;
  transform: translateY(-2px);
}

/* Responsividade para quebrar a tela no celular */
@media (max-width: 992px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-left-pane { min-height: 400px; }
  .cta-right-pane { padding: 60px 24px; }
}

/* ════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.pill-orange {
  background: #ffedd5;
  color: #b45309;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}
.review-count {
  font-size: 13px;
  color: var(--gray-500);
  margin-left: 8px;
}

.test-content blockquote p {
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 28px;
  position: relative;
}
.test-content blockquote p::before {
  content: '"';
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--orange);
  opacity: 1;
  position: absolute;
  top: -24px; left: -24px;
  line-height: 1;
  z-index: -1;
}

.test-author-inline {
  font-size: 15px;
  margin-bottom: 32px;
}
.test-author-inline strong {
  color: var(--text);
  font-weight: 800;
  margin-right: 6px;
}
.test-author-inline span {
  color: var(--gray-500);
}
.test-author-inline span strong {
  color: var(--gray-600);
  font-weight: 700;
  margin-left: 4px;
}

.test-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
}
.test-btn:hover { border-color: var(--text); color: var(--text); }

/* Dots de Navegação */
.test-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.dot.active {
  width: 24px;
  background: #00a97f; /* Verde do seu layout */
  border-radius: 4px;
}

.test-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  max-height: 460px;
}
.test-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .testimonials-inner { grid-template-columns: 1fr; gap: 40px; }
  .test-image { aspect-ratio: 16/9; max-height: 300px; }
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq { background: var(--off-white); }

.faq-header-text {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-header-text .section-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(34px, 5vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.faq-header-text .section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 500px;
  margin: 0 auto;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px; /* O segredo para separar as caixas */
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  background: transparent;
}

/* Ícone de Círculo com + e x */
.faq-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.icon-close { display: none; } /* Oculta o X por padrão */

/* Quando a pergunta está aberta (Ativa) */
.faq-item.active .faq-icon-circle {
  background: #00a97f; /* Círculo verde */
  color: var(--white);
}
.faq-item.active .icon-plus { display: none; }
.faq-item.active .icon-close { display: block; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 24px 24px;
}
.faq-answer p {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200); /* Linha divisória sutil */
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Rodapé do FAQ (Fale Conosco) */
.faq-footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.faq-footer-text {
  font-size: 15px;
  color: #64748b; /* Cinza azulado suave do original */
  font-weight: 500;
}
.faq-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #00a97f; /* Verde água do original */
  transition: color 0.3s ease, transform 0.3s ease;
}
.faq-footer-link:hover {
  color: #008f6b;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #050505; /* Fundo super escuro, quase preto */
  color: var(--white);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.8fr;
  gap: 40px;
  padding-bottom: 64px;
}

/* Coluna 1: Marca */
.footer-brand .footer-logo {
  height: auto; 
  width: 100%;
  max-width: 180px; 
  background: var(--white); /* Como no print, a logo tem fundo branco */
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 24px; 
}
.footer-brand p {
  font-size: 13px;
  color: #9ca3af; /* Cinza claro */
  line-height: 1.65;
  margin-bottom: 32px;
  padding-right: 20px;
}
.social-links { 
  display: flex; 
  gap: 12px; 
}
.social-links a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Borda redonda fina */
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  background: transparent;
  transition: all 0.3s ease;
}
.social-links a:hover { 
  border-color: #00a97f; 
  color: var(--white); 
  background: #00a97f;
}

/* Colunas do Meio */
.footer-col h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}
.footer-col ul { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}
.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--white); }

/* Coluna de Contato */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}
.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #1f2937; /* Quadrado cinza escuro */
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Barra Inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Linha divisória muito subtil */
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { 
  font-size: 12px; 
  color: #6b7280; 
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { 
  font-size: 12px;
  color: #6b7280; 
  transition: color 0.3s ease; 
}
.footer-bottom-links a:hover { color: var(--white); }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS & RESPONSIVE
════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .services-grid, .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  
  /* Menu Mobile Ajustado ao Tema Escuro */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: #050505;
    padding: 40px 24px;
    gap: 28px;
    z-index: 999;
    align-items: flex-start;
    font-size: 20px;
  }

  .hero-content { padding-top: 40px; padding-bottom: 160px; }
  .stats-row { flex-wrap: wrap; gap: 0; }
  .stat { width: 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-divider { display: none; }

  .services-grid, .mod-grid, .presence-stats { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-left-pane { min-height: 400px; padding: 40px; }
  
  .testimonials-inner { grid-template-columns: 1fr; gap: 40px; }
  .test-image { max-height: 300px; aspect-ratio: 16/9; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 38px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .stats-row { flex-direction: column; }
  .stat { width: 100%; }
}

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-inner { grid-template-columns: 1fr; gap: 40px; }
  .presence-map { max-width: 340px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--green-dark);
    padding: 40px 24px;
    gap: 28px;
    z-index: 999;
    align-items: flex-start;
    font-size: 20px;
  }

  .hero-content { padding-top: 40px; padding-bottom: 160px; }
  .hero-bg img.hero-map { display: none; }
  .hero-overlay { background: rgba(13,43,31,.92); }
  .stats-row { flex-wrap: wrap; gap: 0; }
  .stat { width: 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .presence-stats { grid-template-columns: 1fr 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; padding-bottom: 56px; }
  .cta-left h2 { font-size: 48px; }

  .testimonials-inner { grid-template-columns: 1fr; }
  .test-image { max-height: 280px; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 38px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .stats-row { flex-direction: column; }
  .stat { width: 100%; }
}