/* ================================================================
   CLUBE TURISMO — Design System v3
   Fidelidade visual ao site novo + banner aprovado pelo cliente
   Usado pelas LPs de Home Office+Prime e Loja Física
   ================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Paleta extraída do site novo (franquiaclubeturismo.com.br) */
  --azul-deep: #020381;        /* gradient start (banner) */
  --azul-primary: #0a00b4;     /* azul principal (banner sólido) */
  --azul-mid: #045cb4;
  --azul-soft: #046bd2;
  --azul-night: #030B46;       /* fundos dark / footer */
  --azul-ink: #042650;

  --amarelo: #FFF100;          /* CTAs principais */
  --amarelo-soft: #f1ec65;     /* destaque em headline (cor exata do site) */

  --branco: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --danger: #e11d48;

  /* Tipografia */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Espaçamento */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 980px;

  /* Bordas */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(3, 11, 70, 0.05);
  --shadow: 0 4px 16px rgba(3, 11, 70, 0.08);
  --shadow-md: 0 8px 28px rgba(3, 11, 70, 0.10);
  --shadow-lg: 0 20px 50px rgba(3, 11, 70, 0.16);
  --shadow-glow: 0 0 0 4px rgba(255, 241, 0, 0.18);

  /* Transições */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.12;
  color: var(--azul-night);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { font-size: 1.0625rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }

.text-yellow { color: var(--amarelo-soft); }
.text-white { color: var(--branco); }

/* Highlight inline na headline (estilo banner aprovado) */
.hl {
  color: var(--amarelo-soft);
}
.hl-bg {
  background: linear-gradient(180deg, transparent 62%, var(--amarelo) 62%);
  padding: 0 0.12em;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Seções ---------- */
.section { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-xl) 0; }
.section-cream { background: var(--gray-50); }
.section-dark {
  background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul-night) 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.section-dark > * { position: relative; }
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--branco); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azul-primary);
  margin-bottom: 14px;
}
.section-dark .eyebrow,
.ceo-section .eyebrow { color: var(--amarelo-soft); }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.section-dark .section-header p { color: rgba(255, 255, 255, 0.78); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-yellow {
  background: var(--amarelo);
  color: var(--azul-night);
  box-shadow: 0 4px 14px rgba(255, 241, 0, 0.35);
}
.btn-yellow:hover {
  background: #ffe800;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 241, 0, 0.5);
}
.btn-blue {
  background: var(--azul-primary);
  color: var(--branco);
  box-shadow: 0 4px 14px rgba(10, 0, 180, 0.25);
}
.btn-blue:hover {
  background: #1808d6;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(10, 0, 180, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--branco);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 42px;
  width: auto;
}
/* Header escuro permanente (default azul gradient + scrolled azul-night).
   Logo original (branco + ícones amarelos) fica legível em ambos estados. */
.header-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.header-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}
.header.scrolled .header-nav a {
  color: rgba(255, 255, 255, 0.9);
}
.header-nav a:hover,
.header.scrolled .header-nav a:hover {
  color: var(--amarelo-soft);
}
.header .btn-yellow { padding: 10px 18px; font-size: 0.875rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--azul-deep) 0%, var(--azul-primary) 100%);
  color: var(--branco);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241, 236, 101, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 241, 0, 0.12);
  border: 1px solid rgba(255, 241, 0, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amarelo-soft);
  margin-bottom: 28px;
}
.hero-badge .icon { width: 18px; height: 18px; stroke: var(--amarelo-soft); }
.case-loc .icon, .hero-micro .icon { width: 16px; height: 16px; }
.mod-cta-bar p .icon { width: 18px; height: 18px; stroke: var(--amarelo-soft); margin-right: 4px; vertical-align: -3px; }
.ceo-badge .icon { width: 16px; height: 16px; margin-right: 6px; vertical-align: -3px; }
.hero h1 {
  color: var(--branco);
  margin-bottom: 24px;
  font-weight: 800;
}
.hero h1 .hl {
  color: var(--amarelo-soft);
}
.hero p.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}
.hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(2, 3, 129, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero variation com banner full pra LP Loja */
.hero-banner {
  position: relative;
  background: var(--azul-deep);
  overflow: hidden;
  padding: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-banner-cta {
  position: absolute;
  bottom: 14%;
  left: 7%;
  z-index: 5;
}

/* ---------- Trust bar (números abaixo do hero) ---------- */
.trust-bar {
  background: var(--branco);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  align-items: center;
}
.trust-item .num {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--azul-primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.trust-item .lbl {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---------- Ícones (Lucide-style line icons) ---------- */
.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 32px; height: 32px; }

/* ---------- Cards genéricos ---------- */
.card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 0, 180, 0.2);
}

/* ---------- Filtro de perfil ---------- */
.filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.filter-card {
  position: relative;
  background: var(--branco);
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.filter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.filter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--azul-primary), var(--azul-soft));
  z-index: 2;
}
.filter-card.no::before {
  background: linear-gradient(90deg, var(--danger), #f97373);
}
.filter-card-head {
  position: relative;
  padding: 36px 36px 20px;
  background: linear-gradient(135deg, rgba(10, 0, 180, 0.04) 0%, rgba(255, 241, 0, 0.06) 100%);
  border-bottom: 1px solid var(--gray-100);
}
.filter-card.no .filter-card-head {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.04) 0%, rgba(225, 29, 72, 0.01) 100%);
}
.filter-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(10, 0, 180, 0.1);
  color: var(--azul-primary);
  margin-bottom: 14px;
}
.filter-card.no .filter-card-badge {
  background: rgba(225, 29, 72, 0.1);
  color: var(--danger);
}
.filter-card-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--azul-primary);
  color: var(--branco);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.filter-card.no .filter-card-badge-icon { background: var(--danger); }
.filter-card h3 {
  font-size: 1.375rem;
  margin: 0;
  color: var(--azul-night);
  letter-spacing: -0.02em;
}
.filter-card.no h3 { color: var(--gray-900); }
.filter-list {
  padding: 8px 36px 36px;
}
.filter-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.filter-list li:last-child { border-bottom: 0; }
.filter-list li::before {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(3, 11, 70, 0.08);
}
.filter-card:not(.no) .filter-list li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--azul-primary), var(--azul-soft));
  color: var(--branco);
}
.filter-card.no .filter-list li::before {
  content: '✕';
  background: linear-gradient(135deg, var(--danger), #f97373);
  color: var(--branco);
}
.filter-foot {
  position: relative;
  max-width: 820px;
  margin: 48px auto 0;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--azul-deep), var(--azul-primary));
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 0, 180, 0.25);
}
.filter-foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.filter-foot > * { position: relative; }
.filter-foot strong { color: var(--amarelo-soft); }

/* ---------- Modalidades ---------- */
.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.mod-grid.single { grid-template-columns: 1fr; max-width: 600px; }
.mod-card {
  position: relative;
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mod-card.featured {
  border: 2px solid var(--amarelo);
  box-shadow: 0 12px 40px rgba(255, 241, 0, 0.2);
}
.mod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mod-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--amarelo);
  color: var(--azul-night);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mod-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--azul-deep), var(--azul-primary));
  color: var(--amarelo-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mod-icon .icon { width: 28px; height: 28px; stroke: var(--amarelo-soft); }
.mod-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.mod-tag {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.mod-price {
  font-size: 2.375rem;
  font-weight: 800;
  color: var(--azul-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.mod-price-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.mod-features {
  margin-bottom: 28px;
}
.mod-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.mod-features li:last-child { border-bottom: 0; }
.mod-features li::before {
  content: '→';
  color: var(--azul-primary);
  font-weight: 700;
  flex-shrink: 0;
}
.mod-ideal {
  background: var(--gray-50);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.mod-ideal strong { color: var(--azul-night); }

.mod-cta-bar {
  margin-top: 40px;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--azul-deep), var(--azul-primary));
  color: var(--branco);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.mod-cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.mod-cta-bar p {
  position: relative;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  line-height: 1.55;
}
.mod-cta-bar p strong { color: var(--amarelo-soft); }
.mod-cta-bar .btn { position: relative; }

/* ---------- Cases (horizontal premium) ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.case {
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--gray-100);
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 0, 180, 0.18);
}
.case-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  background: var(--gray-100);
}
/* Object-position custom por foto (corrige enquadramento de rosto) */
.case-img.pos-janaina  { object-position: 50% 18%; }
.case-img.pos-gabriel  { object-position: 50% 22%; }
.case-img.pos-lucas    { object-position: 50% 25%; }
.case-img.pos-jonathan { object-position: 50% 20%; }
.case-img.pos-monnielly{ object-position: 50% 25%; }
.case-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  background: var(--branco);
  position: relative;
  z-index: 1;
}
.case-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul-night);
  margin-bottom: 4px;
}
.case-loc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  align-self: flex-start;
  background: rgba(10, 0, 180, 0.08);
  color: var(--azul-primary);
}
.case-tag.evolution {
  background: rgba(255, 241, 0, 0.28);
  color: var(--azul-night);
}
.case-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 18px;
}
.case-num {
  background: var(--gray-50);
  border-left: 3px solid var(--amarelo);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9375rem;
  color: var(--gray-800);
  line-height: 1.45;
}
.case-num strong { color: var(--azul-primary); }

/* ---------- Diferenciais ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--azul-primary);
  box-shadow: var(--shadow);
}
.feat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--azul-deep), var(--azul-primary));
  color: var(--amarelo-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon .icon { width: 28px; height: 28px; stroke: var(--amarelo-soft); }
.feat h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.feat p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ---------- CEO (desktop: foto como background, texto à esquerda; mobile: 2 colunas vira 1 col) ---------- */
.ceo-section {
  position: relative;
  min-height: 640px;
  background-image: url('../img/IMAGEM-ANA.png');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: var(--azul-night);
  color: var(--branco);
  overflow: hidden;
  padding: 96px 0;
  display: flex;
  align-items: center;
}
.ceo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(2, 3, 129, 0.97) 0%,
      rgba(3, 11, 70, 0.95) 38%,
      rgba(3, 11, 70, 0.78) 52%,
      rgba(3, 11, 70, 0.35) 65%,
      transparent 80%);
  pointer-events: none;
}
.ceo-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
}
.ceo-section .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0;
  padding-right: 0;
  padding-left: clamp(24px, 7vw, 120px);
}
.ceo-content {
  max-width: 520px;
}
/* .ceo-photo só aparece no mobile */
.ceo-photo { display: none; }
.ceo-content h2 {
  color: var(--branco);
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}
.ceo-bio {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ceo-quote {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  padding: 22px 26px;
  border-left: 4px solid var(--amarelo);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
}
.ceo-name {
  font-size: 0.9375rem;
  color: var(--amarelo-soft);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.ceo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.ceo-badge {
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--branco);
  font-weight: 500;
}

/* ---------- Jornada ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.journey-step {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--gray-200);
  position: relative;
  counter-increment: step;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.journey-step:hover {
  transform: translateY(-4px);
  border-color: var(--azul-primary);
}
.journey-step::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--azul-primary);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 4px solid var(--gray-50);
}
.journey-step h3 {
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 8px;
}
.journey-step p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ---------- Stats Dark ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--amarelo);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--branco);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] {
  border-color: var(--azul-primary);
  box-shadow: var(--shadow);
}
.faq-item summary {
  padding: 22px 24px;
  font-weight: 600;
  color: var(--azul-night);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--azul-primary);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-content {
  padding: 0 24px 22px;
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ---------- Formulário ---------- */
.form-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--branco) 100%);
}
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--amarelo);
  padding: 8px;
}
.form-wrap iframe {
  width: 100%;
  height: 600px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}
.form-disclaimer {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--azul-night);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 28px;
  font-size: 0.875rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 44px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  line-height: 1.6;
}
.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amarelo-soft);
  margin-bottom: 16px;
}
.footer ul li { padding: 6px 0; }
.footer ul li a { transition: color 0.2s var(--ease); }
.footer ul li a:hover { color: var(--branco); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsividade ---------- */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero { padding: 130px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 2.25rem; }
  .filter-grid, .mod-grid { grid-template-columns: 1fr; }

  /* Cases mobile: aspect-ratio 4:3 e enquadramentos calibrados pro novo formato */
  .case { grid-template-columns: 1fr; }
  .case-img {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    object-position: center 15%;
  }
  .case-img.pos-janaina   { object-position: 50% 10%; }
  .case-img.pos-gabriel   { object-position: 50% 22%; }
  .case-img.pos-lucas     { object-position: 50% 15%; }
  .case-img.pos-jonathan  { object-position: 50% 12%; }
  .case-img.pos-monnielly { object-position: 50% 15%; }

  /* CEO mobile: 1 coluna, foto dedicada acima do texto, background-image desligado */
  .ceo-section {
    background-image: none;
    background-color: var(--azul-night);
    min-height: auto;
    padding: 0 0 72px;
    display: block;
  }
  .ceo-section::before { display: none; }
  .ceo-section .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }
  .ceo-photo {
    display: block;
    order: -1;
    width: calc(100% + 48px);
    margin: 0 -24px;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--azul-deep), var(--azul-night));
  }
  .ceo-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% center;
    display: block;
  }
  .ceo-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(2,3,129,0.85) 100%);
    pointer-events: none;
  }
  .ceo-content {
    max-width: 100%;
    padding-top: 24px;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 72px 0; }
  .header-nav { display: none; }
}

@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .mod-cta-bar { flex-direction: column; align-items: flex-start; }
  .filter-card, .mod-card, .card, .feat { padding: 28px 22px; }
  .case-body { padding: 24px; }
  .hero-banner-cta { bottom: 10%; left: 6%; }
}
