/* ════════════════════════════════════════════
   GÊNESIS CARGAS — style.css
   Paleta: Azul Petróleo / Amarelo / Branco / Cinza
════════════════════════════════════════════ */

:root {
  --blue-dark:   #172242;
  --blue-mid:    #253468;
  --blue-light:  #3b5098;
  --yellow:      #eab308;
  --yellow-dark: #ca8a04;
  --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 {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ e Edge */
  user-select: none; /* Padrão */
  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(--yellow);
  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(--yellow); }
.blue { color: var(--blue-mid); }

/* ── Buttons ──────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  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(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,179,8,.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(--yellow); color: var(--yellow); }

/* ════════════════════════════════════════
   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(--blue-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
  /*background-color: red !important;*/
}
.logo { 
  display: flex; 
  align-items: center; 
  flex-shrink: 0; /* Impede que o contêiner do logo seja esmagado na horizontal */
}
.logo img { 
  height: 56px; /* Altura melhor ajustada para caber na sua navbar de 72px */
  width: auto; 
  object-fit: contain; /* Trava a proporção da imagem para ela nunca deformar */
}

.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(--yellow); }

.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(--blue-dark);
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img.hero-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a imagem preencher todo o espaço disponível */
  object-position: center; /* Centraliza o mapa na tela */
  opacity: 0.85;
  mix-blend-mode: screen; 
  filter: drop-shadow(0 0 60px rgba(234,179,8,.25));
  animation: floatMap 6s ease-in-out infinite;
  /* Damos um leve zoom (1.05) para a animação não revelar o fundo */
  transform: scale(1.05); 
}

/* Ajuste o keyframe logo abaixo para respeitar o scale */
@keyframes floatMap {
  0%, 100% { transform: scale(1.05) translate(0, 0); }
  50%      { transform: scale(1.05) translate(-8px, -4px); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(23,34,66,.97) 45%, rgba(23,34,66,.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(--yellow);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(234,179,8,.12);
  border: 1px solid rgba(234,179,8,.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(--yellow); }
.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; }

.nossos-servicos-header-text {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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(23, 34, 66, 0.9);
}

/* 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(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: var(--yellow);
  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(234, 179, 8, 0.15);
  color: var(--yellow);
  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; 
  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-blue {
  background: #e0e7ff;
  color: #253468;
  padding: 6px 16px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.blue-text { color: #253468; }

.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: #e0e7ff;
  color: #253468;
  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;
  
  --brazil-bg-color: #253468;        
  --brazil-bg-hover-color: #eab308;  
  --brazil-stroke-color: #ffffff;    
  --brazil-stroke-hover-color: #ffffff;

  --brazil-bg-color-dark: #253468; 
  --brazil-bg-hover-color-dark: #eab308; 
  --brazil-stroke-color-dark: #ffffff;
  --brazil-stroke-hover-color-dark: #ffffff;
  
  filter: drop-shadow(0 10px 24px rgba(37, 52, 104, 0.25));
  transition: all 0.3s ease;
}

.section-label.small.dark {
  color: var(--gray-600);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.states-badges.light-blue {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Estilo das Tags dos Estados */
.states-badges.light-blue span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 30px;
  background: #e0e7ff;
  color: #253468;
  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-blue span:hover,
.states-badges.light-blue span.active-state {
  transform: translateY(-4px); 
  background: #eab308; 
  color: #ffffff; 
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3); 
}

/* ════════════════════════════════════════
   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;
}

.mod-title {
  font-family: 'Barlow', sans-serif;
  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); border: 2px solid #3b5098; }
.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.yellow { 
  background: var(--yellow); 
  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: #e0e7ff;
  color: #253468;
  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.blue-text {
  color: #253468;
}

/* ════════════════════════════════════════
   CTA SPLIT BANNER
════════════════════════════════════════ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--white);
}

.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;
}

.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;
}

.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: #e0e7ff;
  color: #253468;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg {
  width: 16px;
  height: 16px;
}

.btn-blue-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #253468; 
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 99px;
  transition: background var(--transition), transform var(--transition);
}
.btn-blue-pill:hover {
  background: #172242;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-left-pane { min-height: 400px; height: 800px;}
  .cta-right-pane { padding: 60px 24px; }
}

/* ════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════ */
/* Desativar depoimentos a pedido da cliente*/ 
.testimonials {
  display: none;
}

.testimonials { background: var(--off-white); }
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.pill-yellow {
  background: #fef08a;
  color: #ca8a04;
  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(--yellow);
  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: #253468; 
  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; 
}

.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;
}

.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; } 

.faq-item.active .faq-icon-circle {
  background: #253468; 
  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); 
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

.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; 
  font-weight: 500;
}
.faq-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #253468; 
  transition: color 0.3s ease, transform 0.3s ease;
}
.faq-footer-link:hover {
  color: #172242;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #050505; 
  color: var(--white);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.8fr;
  gap: 40px;
  padding-bottom: 64px;
}

.footer-brand .footer-logo {
  height: auto; 
  width: 100%;
  max-width: 180px; 
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 24px; 
}
.footer-brand p {
  font-size: 13px;
  color: #9ca3af; 
  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); 
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af;
  background: transparent;
  transition: all 0.3s ease;
}
.social-links a:hover { 
  border-color: #253468; 
  color: var(--white); 
  background: #253468;
}

.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); }

.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; 
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); 
  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; }
  
  .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: 45px; 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(--blue-dark);
    padding: 40px 24px;
    gap: 28px;
    z-index: 999;
    align-items: flex-start;
    font-size: 20px;
  }

  /* 1. Reduzi o padding-bottom de 160px para 60px */
  .hero-content { padding-top: 40px; padding-bottom: 60px; }
  
  /* 2. Adicionei esta regra para as estatísticas não flutuarem sobre os botões */
  .hero-stats {
    position: relative;
    bottom: auto;
    margin-top: auto;
  }

  .hero-overlay { background: rgba(23,34,66,.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%; }
}

/* ════════════════════════════════════════
   PÁGINA DE COTAÇÃO - ESTILOS EXCLUSIVOS
════════════════════════════════════════ */
.cotacao-body { background-color: var(--off-white); }
.cotacao-main { padding: 120px 24px 60px; min-height: 100vh; display: flex; justify-content: center;}
.cotacao-wrapper { max-width: 800px; margin: 0 auto; width: 100%; }

.cotacao-header { text-align: center; margin-bottom: 40px; }
.badge-theme { display: inline-flex; align-items: center; gap: 6px; background: #e0e7ff; color: #253468; font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 99px; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase;}
.cotacao-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(34px, 5vw, 44px); font-weight: 900; color: var(--text); margin-bottom: 12px; }
.cotacao-header p { color: var(--gray-600); font-size: 15px; max-width: 500px; margin: 0 auto; }

/* Barra de Progresso */
.progress-container { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; z-index: 2; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-200); color: var(--gray-400); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; transition: all 0.3s; }
.step-text { font-size: 13px; font-weight: 600; color: var(--gray-400); }
.progress-line { flex: 1; max-width: 100px; height: 2px; background: var(--gray-200); margin-top: -24px; }

/* Passos Ativos e Completos */
.progress-step.active .step-circle { background: var(--yellow); color: var(--white); box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3); }
.progress-step.active .step-text { color: var(--blue-mid); }
.progress-step.completed .step-circle { background: var(--blue-mid); color: transparent; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* Formulário Container */
.form-container { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);}
.form-step { display: none; animation: fadeIn 0.4s ease; }
.form-step.active { display: block; }

.form-step h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 24px; border-bottom: 2px solid var(--gray-100); padding-bottom: 12px;}

.form-row { display: flex; gap: 24px; margin-bottom: 20px; }
.form-row.half { width: 50%; padding-right: 12px; }
.form-row.full { flex-direction: column; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-600); }
.form-group label span { color: #ef4444; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--gray-800); transition: border 0.3s; background: var(--white);}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.15); }
.form-divider { height: 1px; background: var(--gray-100); margin: 32px 0; }

/* Botões Formulario */
.form-footer { margin-top: 32px; display: flex; }
.form-footer.right { justify-content: flex-end; }
.form-footer.split { justify-content: space-between; }

.btn-step { padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; }
.btn-step.next-step { background: var(--blue-mid); color: var(--white); }
.btn-step.next-step:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 52, 104, 0.2); }
.btn-step.submit { background: var(--yellow); color: var(--white); }
.btn-step.submit:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(234, 179, 8, 0.35); }
.btn-step.outline { background: transparent; border: 2px solid var(--gray-200); color: var(--gray-600); }
.btn-step.outline:hover { background: var(--gray-100); border-color: var(--gray-400); color: var(--text); }

/* Summary Box (Aba 3) */
.summary-box { background: var(--off-white); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 20px; border: 1px solid var(--gray-200); }
.summary-section h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; letter-spacing: 0.05em; }
.summary-section p { font-size: 13px; color: var(--gray-600); margin: 0; }
.summary-section strong { color: var(--text); font-weight: 600; }
.spacer { display: inline-block; width: 16px; }
.route-display { display: flex; align-items: center; gap: 16px; background: var(--white); padding: 12px 16px; border-radius: 8px; border: 1px solid var(--gray-200); }
.route-point { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--blue-mid); font-weight: 700;}
.route-arrows { color: var(--gray-400); font-size: 12px; letter-spacing: 2px; }
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 24px !important; }

/* Tela de Sucesso */
.form-success { display: none; text-align: center; padding: 40px 0; }
.form-success.active { display: block; animation: fadeIn 0.5s ease; }
.success-icon { width: 64px; height: 64px; background: rgba(234, 179, 8, 0.15); color: var(--yellow); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.form-success h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 900; color: var(--text); margin-bottom: 16px; }
.form-success p { color: var(--gray-600); font-size: 15px; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.success-actions { display: flex; justify-content: center; gap: 16px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
  .form-row { flex-direction: column; gap: 16px; }
  .form-row.half { width: 100%; padding-right: 0; }
  .progress-step .step-text { display: none; }
  .form-container { padding: 24px; }
  .route-display { flex-direction: column; align-items: flex-start; gap: 8px;}
  .route-arrows { transform: rotate(90deg); margin-left: 6px; }
  .success-actions { flex-direction: column; }
}

/* Força a navbar a ter fundo sólido em páginas internas (como a de cotação) */
.navbar.navbar-solid {
  background: var(--blue-dark) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.3) !important;
}