/* ============================================================
   REPROBOOST · Programa de Afiliados
   Estrutura: Hero rotativo · Caixa de Vantagens ·
   Banners de produto · Cadastro · FAQ · Rodapé
   Paleta: teal (logo) + dourado (acento de produto) + neutros.
   ============================================================ */

:root {
  --teal-50:  #e8f6f0;
  --teal-100: #c5e8db;
  --teal-200: #8ed3bb;
  --teal-300: #5bbf9e;
  --teal-400: #2dbf94;
  --teal-500: #1f9e7a;
  --teal-600: #168163;
  --teal-700: #0e6650;
  --teal-800: #0a4a3a;
  --teal-900: #052b22;

  --gold:    #c9a961;
  --gold-2:  #e6c878;
  --gold-3:  #f3d995;

  --andro-bg-1: #0a1f3d;
  --andro-bg-2: #050d1f;
  --iatf-bg-1: #4a0e1a;
  --iatf-bg-2: #240509;
  --central-bg-1: #073823;
  --central-bg-2: #03180f;

  --bone:    #faf8f3;
  --cream:   #f3efe6;
  --paper:   #ffffff;
  --ink:     #0c1614;
  --ink-2:   #1c2a26;
  --text:        #161a1c;
  --text-soft:   #46504e;
  --text-muted:  #6b7378;
  --text-light:  #d8dfe2;
  --text-light-soft: #aab2b6;

  --line: #e6e9ec;

  --shadow-sm: 0 4px 14px rgba(8, 24, 19, 0.06);
  --shadow-md: 0 14px 40px rgba(8, 24, 19, 0.10);
  --shadow-lg: 0 28px 80px rgba(8, 24, 19, 0.20);
  --shadow-teal: 0 16px 48px rgba(15, 102, 80, 0.28);
  --shadow-gold: 0 16px 48px rgba(201, 169, 97, 0.32);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --topbar-h: 38px;
  --header-h: 66px;

  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6, p, li, span, a { overflow-wrap: anywhere; }
img, svg { max-width: 100%; display: block; }
svg { width: 22px; height: 22px; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
em { font-style: italic; color: var(--teal-700); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== HELPERS ===================== */
.text-teal       { color: var(--teal-500); }
.text-teal-dark  { color: var(--teal-700); }
.text-gold       { color: var(--gold-2); }
.text-center     { text-align: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-sm  { padding: 10px 18px; font-size: 0.83rem; }
.btn-lg  { padding: 17px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(15, 102, 80, 0.45); }

.btn-product {
  color: #fff;
  border: 1.5px solid rgba(230, 200, 120, 0.9);
  box-shadow:
    0 16px 38px rgba(0,0,0,0.28),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-product:hover {
  transform: translateY(-2px);
  border-color: var(--gold-3);
}
.btn-product-andro {
  background:
    linear-gradient(135deg, rgba(20,55,98,0.96), var(--andro-bg-1) 54%, var(--andro-bg-2));
}
.btn-product-andro:hover {
  box-shadow:
    0 20px 48px rgba(5,13,31,0.5),
    0 0 0 1px rgba(243,217,149,0.22);
}
.btn-product-iatf {
  background:
    linear-gradient(135deg, #7b1b2b, var(--iatf-bg-1) 52%, var(--iatf-bg-2));
}
.btn-product-iatf:hover {
  box-shadow:
    0 20px 48px rgba(74,14,26,0.52),
    0 0 0 1px rgba(243,217,149,0.22);
}
.btn-product-central {
  background:
    linear-gradient(135deg, #0b5a35, var(--central-bg-1) 52%, var(--central-bg-2));
}
.btn-product-central:hover {
  box-shadow:
    0 20px 48px rgba(3,24,15,0.54),
    0 0 0 1px rgba(243,217,149,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border: 1.5px solid var(--teal-600);
}
.btn-outline:hover { background: var(--teal-600); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.55); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #1c1206;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(201, 169, 97, 0.5); }

/* Botão vertical: ícone em cima + texto embaixo, centralizado */
.btn-stack {
  flex-direction: column;
  gap: 12px;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}
.btn-stack-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(28, 18, 6, 0.12);
}
.btn-stack-ico svg { width: 24px; height: 24px; color: #1c1206; }
.btn-stack span:last-child { letter-spacing: 0.02em; }

.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  transition: background 0.2s ease;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); }
.icon-btn svg { width: 20px; height: 20px; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--teal-900);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--topbar-h);
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-info .pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-item svg { width: 14px; height: 14px; color: var(--teal-300); }
.topbar-social { display: flex; gap: 4px; }
.topbar-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s ease, color 0.2s ease;
}
.topbar-social a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--teal-300);
}
.topbar-social svg { width: 14px; height: 14px; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;        /* fixed (não sticky) → não reserva espaço no fluxo,
                             some por completo sem deixar faixa branca */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  will-change: transform;
  transition:
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.site-header.header-retracted {
  transform: translateY(calc(-100% - 8px));
  box-shadow: none;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 42px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}
.nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--teal-500);
  transition: width 0.3s ease;
}
.nav a:hover, .nav a.active { color: var(--teal-700); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta { flex-shrink: 0; }
.header-cta svg { width: 16px; height: 16px; }
.header-actions .icon-btn { color: var(--text); }
.header-actions .icon-btn:hover { background: var(--cream); }

.menu-toggle { display: none; }

/* ===================== HERO CAROUSEL ===================== */
.hero {
  position: relative;
  /* header é fixed (fora do fluxo) e some por padrão; o hero ocupa
     a viewport abaixo apenas da topbar */
  height: clamp(540px, calc(100svh - var(--topbar-h)), 840px);
  min-height: 540px;
  overflow: hidden;
  background: var(--teal-900);
}
.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  /* Transição suave (ease-in-out) entre os tópicos do hero */
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: none;
}
.hero-slide.is-active .hero-slide-media { transform: none; }
.hero-slide-product .hero-slide-media {
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}
.hero-slide-media-andro {
  background-image:
    radial-gradient(circle at 68% 48%, rgba(243,217,149,0.22) 0%, rgba(201,169,97,0.14) 24%, rgba(201,169,97,0.06) 42%, transparent 62%),
    url('../img/backgrounds/andro.png');
  background-size: cover, cover;
  background-position: center, center;
}
.hero-slide-media-iatf {
  background-image:
    radial-gradient(circle at 68% 48%, rgba(243,217,149,0.24) 0%, rgba(201,169,97,0.16) 24%, rgba(201,169,97,0.07) 42%, transparent 62%),
    url('../img/backgrounds/iatf.png');
  background-size: cover, cover;
  background-position: center, center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.46) 0%, rgba(0,0,0,0.18) 48%, transparent 100%);
}
.hero-slide-overlay-andro {
  background: linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.14) 48%, transparent 82%);
}
.hero-slide-overlay-iatf {
  background: linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.14) 48%, transparent 82%);
}

.hero-slide-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
  padding: 0 24px;
}
.hero-slide-main .hero-slide-content {
  transform: translate(
    calc(clamp(18px, 4.5vw, 70px) * -1),
    calc(clamp(22px, 6vh, 64px) * -1)
  );
}
.hero-slide:not(.hero-slide-product) .hero-slide-content > * {
  max-width: 560px;
}
.hero-slide-main .hero-slide-content .hero-title {
  max-width: 540px;
  font-size: clamp(2.05rem, 3.45vw, 3rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

/* Logo com aura dourada acima do título principal */
.hero-slide-main .hero-slide-content .hero-logo-aura {
  position: relative;
  display: block;
  width: clamp(150px, 18vw, 230px);
  max-width: 230px;
  margin: 0 0 16px;
  isolation: isolate;
  line-height: 0;
}
.hero-slide-main .hero-slide-content .hero-logo-aura::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(255,241,184,0.9) 0%,
      rgba(243,217,149,0.6) 18%,
      rgba(201,169,97,0.35) 38%,
      rgba(201,169,97,0.14) 58%,
      transparent 78%);
  filter: blur(12px);
  animation: heroLogoAuraPulse 4.8s ease-in-out infinite;
  pointer-events: none;
}
.hero-slide-main .hero-slide-content .hero-logo-aura-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(243,217,149,0.6))
          drop-shadow(0 4px 22px rgba(0,0,0,0.4));
}
@keyframes heroLogoAuraPulse {
  0%, 100% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-aura::before { animation: none; }
}
.hero-slide-main .hero-slide-content .hero-sub {
  max-width: 420px;
}
.hero-slide-main .hero-slide-content .hero-ctas {
  width: min(270px, 100%);
  max-width: 270px;
  flex-direction: column;
  align-items: stretch;
}
.hero-slide-main .hero-slide-content .hero-ctas .btn {
  width: 100%;
}

/* Slide com produto: split */
.hero-slide-split { padding: 0 !important; }
.hero-split-inner {
  width: 100%;
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}
.hero-slide-text {
  min-width: 0;
  max-width: 620px;
}
.hero-slide-product-pack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  min-height: min(58vh, 540px);
  width: 100%;
  isolation: isolate;
}
.hero-slide-product-pack::before,
.hero-slide-product-pack::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-slide-product-pack::before {
  width: min(560px, 96%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,241,184,0.92) 0 8%, rgba(230,200,120,0.5) 22%, rgba(201,169,97,0.22) 42%, transparent 68%);
  filter: blur(24px);
  transform: translateY(4%);
}
.hero-slide-product-pack::after {
  width: min(680px, 108%);
  aspect-ratio: 1.12;
  border-radius: 50%;
  background:
    conic-gradient(from 30deg, transparent, rgba(230,200,120,0.22), transparent 28%, rgba(45,191,148,0.12), transparent 62%, rgba(243,217,149,0.18), transparent);
  filter: blur(18px);
  opacity: 0.78;
  transform: rotate(-10deg);
}
.hero-slide-product-pack img {
  position: relative;
  z-index: 1;
  height: clamp(340px, 48vh, 500px);
  max-width: min(92%, 500px);
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 46px rgba(0,0,0,0.58))
    drop-shadow(0 0 34px rgba(230,200,120,0.22));
  animation: floatProductPack 6s ease-in-out infinite;
}
.hero-product-andro img,
.hero-product-iatf img {
  transform: none;
}

/* Duo no hero: lata (grande, direita) + balde (menor, esquerda, à frente),
   com pequena sobreposição lateral — mesma lógica das seções de produto. */
.hero-slide-product-pack .hero-duo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(320px, 46vh, 490px);
  max-width: 100%;
}
.hero-slide-product-pack .hero-duo img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 46px rgba(0,0,0,0.58))
    drop-shadow(0 0 34px rgba(230,200,120,0.22));
}
.hero-slide-product-pack .hero-duo .hero-duo-front {  /* lata 20.4 kg */
  height: 100%;
  order: 2;
  z-index: 1;
  animation: floatProductPack 6s ease-in-out infinite;
}
.hero-slide-product-pack .hero-duo .hero-duo-back {   /* balde 3 kg */
  height: 60%;
  order: 1;
  z-index: 2;
  margin-right: -5%;
  animation: floatProductPack 6s ease-in-out infinite 0.5s;
}
@keyframes floatProductPack {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
.hero-slide-flyer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}
.hero-slide-flyer::before {
  content: '';
  position: absolute;
  width: 90%; height: 90%;
  background: radial-gradient(circle, rgba(201,169,97,0.25), transparent 65%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}
.hero-slide-flyer img {
  position: relative;
  z-index: 1;
  max-height: 480px;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-2deg);
  animation: floatFlyer 6s ease-in-out infinite;
}
@keyframes floatFlyer {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-10px); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(45, 191, 148, 0.12);
  border: 1px solid rgba(45, 191, 148, 0.45);
  color: var(--teal-200);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--teal-300);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-300);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-eyebrow .dot-gold {
  background: var(--gold-2);
  box-shadow: 0 0 10px var(--gold-2);
}
.hero-eyebrow:has(.dot-gold) {
  background: rgba(201,169,97,0.12);
  border-color: rgba(201,169,97,0.4);
  color: var(--gold-2);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  max-width: 720px;
}
.hero-title-line {
  display: block;
}
.hero-word-high {
  color: #d94652;
}
.hero-word-performance {
  color: #4f8fc8;
}
.hero-slide-product .hero-title {
  font-size: clamp(1.8rem, 3.2vw, 2.85rem);
  max-width: 620px;
  margin-bottom: 18px;
}
.hero-title-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.92;
}
.hero-title-stack .title-line {
  display: block;
}
.hero-title-stack .title-line-main {
  max-width: none;
}
.hero-title-stack .title-line-gold {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: var(--gold-2);
  font-family: var(--font-serif);
  font-size: 1.18em;
  font-style: italic;
  font-weight: 700;
  line-height: 0.82;
}
.hero-title-stack .title-line-gold::after {
  content: '';
  position: absolute;
  left: 0.04em;
  right: -0.1em;
  bottom: -0.1em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243,217,149,0), rgba(243,217,149,0.92), rgba(201,169,97,0));
  opacity: 0.85;
}
.hero-title-stack .title-line-sub {
  margin-top: 0.02em;
  color: rgba(255,255,255,0.94);
  font-size: 0.68em;
  font-weight: 700;
  line-height: 0.95;
}
.hero-sub {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.92);
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-slide-product .hero-sub { max-width: 500px; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}
.hero-arrow:hover { background: rgba(255,255,255,0.22); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.25s ease;
}
.hero-dot.is-active {
  width: 36px;
  border-radius: 5px;
  background: var(--teal-300);
  border-color: var(--teal-300);
}

/* ===================== SECTION BASE ===================== */
.section { padding: 100px 0; position: relative; }
.section-tight { padding: 70px 0; }

.section-head {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.section-head.text-center {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.section-head .right { display: flex; align-items: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--teal-300); }
.eyebrow-gold  { color: var(--gold-2); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--teal-600);
  font-family: var(--font-serif);
  font-weight: 700;
}
.section-title.light { color: #fff; }

.section-sub {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 720px;
  margin-top: 10px;
}
.section-head.text-center .section-sub { margin: 10px auto 0; }

/* ===================== VANTAGENS / SOBRE O PROGRAMA ===================== */
.advantages-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bone), var(--cream));
  position: relative;
  overflow: hidden;
}
.advantages-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(250,248,243,0.56), rgba(250,248,243,0.28) 48%, rgba(250,248,243,0.42)),
    linear-gradient(180deg, rgba(255,255,255,0.22), rgba(243,239,230,0.18)),
    radial-gradient(circle at 12% 12%, rgba(45,191,148,0.10), transparent 46%),
    radial-gradient(circle at 88% 85%, rgba(201,169,97,0.16), transparent 46%),
    url('../img/backgrounds/programa.png');
  background-size: cover, cover, cover, cover, cover;
  background-position: center;
  pointer-events: none;
  opacity: 1;
}
.advantages-section .container { position: relative; z-index: 1; }

/* Camadas de fundo trocáveis no hover dos cards de produto */
.advantages-hover-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.advantages-hover-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 1.2s ease;
}
.advantages-hover-layer.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Quando algum card é hovereado e o background escuro aparece,
   o head da seção vira claro pra não camuflar */
.advantages-section.has-hover-bg .section-eyebrow {
  color: var(--gold-2);
  transition: color 0.4s ease;
}
.advantages-section.has-hover-bg .section-title {
  color: #fff;
  transition: color 0.4s ease;
}
.advantages-section.has-hover-bg .section-title em {
  color: var(--gold-2);
}
.advantages-section.has-hover-bg .section-sub {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.4s ease;
}
.advantages-section .section-eyebrow,
.advantages-section .section-title,
.advantages-section .section-title em,
.advantages-section .section-sub {
  transition: color 0.4s ease;
}

/* Trio de fotos dos produtos */
.advantages-products {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 22px;
  margin-bottom: 50px;
  align-items: end;
}
.adv-product {
  position: relative;
  text-align: center;
  padding: 26px 22px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, var(--cream));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.adv-product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.adv-product img {
  height: 220px;
  width: auto;
  margin: 0 auto 14px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.22));
  transition: transform 0.4s ease;
}
.adv-product:hover img { transform: translateY(-4px) scale(1.04); }

/* Duo (lata + balde) nos cards de IATF e Andro */
.adv-duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 220px;
  margin: 0 auto 14px;
  max-width: 100%;
}
.adv-product .adv-duo img {
  height: auto;
  width: auto;
  margin: 0;
}
.adv-product .adv-duo .adv-duo-front {  /* lata 20.4 kg — grande */
  height: 100%;
  order: 2;
  z-index: 1;
}
.adv-product .adv-duo .adv-duo-back {   /* balde 3 kg — menor, à frente */
  height: 64%;
  order: 1;
  z-index: 2;
  margin-right: -6%;
}
.adv-product-kit {
  background: linear-gradient(180deg, var(--teal-50), #fff);
  border-color: var(--teal-200);
  position: relative;
}
.adv-product-kit::after {
  content: 'KIT OFICIAL';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-3), var(--gold));
  color: #1c1206;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(201,169,97,0.4);
}
.adv-product-kit img { height: 250px; }
.adv-product figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.adv-product figcaption span {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.adv-product-andro figcaption strong { color: var(--andro-bg-1); }
.adv-product-iatf  figcaption strong { color: var(--iatf-bg-1); }

/* ===================== FICHA TÉCNICA (gancho + modal) ===================== */
.techsheet-band {
  position: relative;
  padding: 64px 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(45,191,148,0.10), transparent 38%),
    radial-gradient(circle at 82% 50%, rgba(201,169,97,0.12), transparent 38%),
    linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  border-top: 1px solid rgba(201,169,97,0.18);
  border-bottom: 1px solid rgba(201,169,97,0.18);
}
.techsheet-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.techsheet-text { flex: 1 1 380px; min-width: 0; }
.techsheet-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 8px;
}
.techsheet-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  font-weight: 800;
  color: var(--teal-900);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.techsheet-text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.techsheet-text p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  max-width: 540px;
}
.techsheet-trigger { flex: 0 0 auto; }
.techsheet-trigger svg { width: 18px; height: 18px; }

/* Modal */
.techsheet-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: tsFade 0.22s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.techsheet-modal[hidden] { display: none; }
@keyframes tsFade { from { opacity: 0; } to { opacity: 1; } }
.techsheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 16, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.techsheet-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: tsRise 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes tsRise {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.techsheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--bone));
}
.techsheet-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
.techsheet-close {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background: transparent;
  transition: background 0.14s, color 0.14s;
  flex: none;
  border: 0;
  cursor: pointer;
}
.techsheet-close:hover { background: var(--bone); color: var(--text); }
.techsheet-close svg { width: 18px; height: 18px; }

.techsheet-table-wrap {
  overflow: auto;
  padding: 6px 0;
}

/* Tabelas reais dos produtos (imagens) lado a lado */
.techsheet-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 24px 26px;
  overflow-y: auto;
}
.techsheet-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.techsheet-product figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.techsheet-product figcaption small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.techsheet-img-wrap {
  position: relative;
  display: block;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.techsheet-img-wrap:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(8,24,19,0.12);
  transform: translateY(-2px);
}
.techsheet-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  background: #fff;
}
.techsheet-img-zoom {
  position: absolute;
  top: 10px; right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5, 20, 16, 0.78);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
}
.techsheet-img-zoom svg { width: 14px; height: 14px; }
.techsheet-img-wrap:hover .techsheet-img-zoom,
.techsheet-img-wrap:focus-visible .techsheet-img-zoom {
  opacity: 1;
  transform: translateY(0);
}
.techsheet-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid rgba(31,158,122,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.14s, color 0.14s, border-color 0.14s;
}
.techsheet-download svg { width: 14px; height: 14px; }
.techsheet-download:hover {
  background: var(--teal-700);
  color: #fff;
  border-color: var(--teal-700);
}

@media (max-width: 820px) {
  .techsheet-tables { grid-template-columns: 1fr; gap: 22px; padding: 16px 18px; }
  .techsheet-img-wrap img { max-height: 70vh; }
  .techsheet-img-zoom { opacity: 1; transform: none; }
}
.techsheet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.techsheet-table thead th {
  position: sticky;
  top: 0;
  background: var(--bone);
  padding: 16px 18px 14px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.techsheet-table thead th.th-spec {
  width: 26%;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.techsheet-table thead small {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}
.th-pill {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0.02em;
}
.th-pill-andro { background: linear-gradient(135deg, var(--andro-bg-1), #1a3870); }
.th-pill-iatf  { background: linear-gradient(135deg, var(--iatf-bg-1), #7a1e2c); }
.techsheet-table tbody th {
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-soft);
  background: var(--bone);
  border-bottom: 1px solid var(--line-soft, #eef1f3);
  vertical-align: top;
  white-space: nowrap;
}
.techsheet-table tbody td {
  padding: 14px 18px;
  color: var(--text);
  border-bottom: 1px solid var(--line-soft, #eef1f3);
  vertical-align: top;
}
.techsheet-table tbody tr:last-child th,
.techsheet-table tbody tr:last-child td { border-bottom: 0; }
.techsheet-table tbody td strong { color: var(--teal-700); font-weight: 800; }
.ts-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.ts-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.ts-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.techsheet-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 26px 18px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--text-muted);
  background: linear-gradient(180deg, var(--bone), #fff);
  flex-wrap: wrap;
}

/* Ícone decorativo (visível só no mobile, escondido no desktop) */
.techsheet-icon { display: none; }
/* Badges dos produtos (visíveis só no mobile) */
.techsheet-badges { display: none; }

@media (max-width: 820px) {
  /* Card elegante, centralizado, com presença visual */
  .techsheet-band {
    padding: 30px 16px;
    background:
      radial-gradient(circle at 50% -10%, rgba(201,169,97,0.16), transparent 55%),
      linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  }
  .techsheet-band .container { padding: 0; }
  .techsheet-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    background: var(--paper);
    border: 1px solid rgba(201,169,97,0.35);
    border-radius: 22px;
    padding: 38px 22px 24px;     /* topo maior pra respirar abaixo da faixa dourada */
    box-shadow:
      0 22px 50px rgba(8, 24, 19, 0.12),
      0 2px 0 rgba(255,255,255,0.6) inset;
    position: relative;
    overflow: hidden;
  }
  /* Faixa verde+dourada decorativa no topo */
  .techsheet-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--gold), var(--gold-3), var(--gold), var(--teal-500));
  }
  /* Brilho radial sutil atrás do conteúdo */
  .techsheet-inner::after {
    content: "";
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .techsheet-inner > * { position: relative; z-index: 1; }

  /* Ícone dourado em destaque */
  .techsheet-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #2b1f00;
    box-shadow:
      0 10px 24px rgba(201,169,97,0.4),
      inset 0 1px 0 rgba(255,255,255,0.5);
    margin-bottom: 16px;
  }
  .techsheet-icon svg { width: 24px; height: 24px; }

  .techsheet-text { flex: 0 0 auto; width: 100%; }
  .techsheet-text h2 {
    font-size: 1.28rem;
    line-height: 1.2;
    margin-bottom: 10px;
    /* Balanceia as linhas — evita órfãos como "em" sozinho no fim de linha */
    text-wrap: balance;
    -webkit-text-wrap: balance;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .techsheet-text p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 auto 16px;
    max-width: 300px;
    text-wrap: pretty;
  }
  .techsheet-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    margin-bottom: 10px;
    color: var(--teal-700);
  }

  /* Badges dos produtos */
  .techsheet-badges {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px 12px;
    background: var(--bone);
    border-radius: 999px;
    border: 1px solid var(--line);
  }
  .techsheet-badge {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
  }
  .techsheet-badge-andro { background: linear-gradient(135deg, var(--andro-bg-1), #1a3870); }
  .techsheet-badge-iatf  { background: linear-gradient(135deg, var(--iatf-bg-1), #7a1e2c); }
  .techsheet-badge-x {
    font-weight: 800;
    color: var(--gold);
    font-size: 0.95rem;
  }

  .techsheet-trigger {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.94rem;
    box-shadow:
      0 12px 26px rgba(201,169,97,0.42),
      inset 0 1px 0 rgba(255,255,255,0.4);
  }
  .techsheet-trigger svg { width: 16px; height: 16px; }

  /* Modal vira bottom-sheet com toda a viewport disponível */
  .techsheet-modal { padding: 0; align-items: flex-end; }
  .techsheet-card {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    max-height: 96vh;
    height: 96vh;
    animation: tsSheet 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
  @keyframes tsSheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
  /* Indicador de arraste decorativo no topo do sheet */
  .techsheet-card::before {
    content: "";
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 4px;
    border-radius: 999px;
    background: rgba(0,0,0,0.15);
    z-index: 5;
  }
  .techsheet-head {
    padding: 18px 18px 12px;
    position: relative;
    padding-top: 20px;
  }
  .techsheet-head h3 { font-size: 1.1rem; }
  .techsheet-head .techsheet-eyebrow {
    font-size: 0.66rem;
    color: var(--gold);
    letter-spacing: 0.18em;
    margin-bottom: 2px;
  }

  /* Tabelas das fichas (imagens reais) — área de leitura ampla */
  .techsheet-tables {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 12px 14px 16px;
    overflow-y: auto;
    /* Compensa o footer fixo embaixo */
    flex: 1 1 auto;
  }
  .techsheet-product { gap: 8px; }
  .techsheet-product figcaption {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    align-self: flex-start;
  }
  .techsheet-product figcaption small {
    font-size: 0.72rem;
  }
  .techsheet-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  }
  .techsheet-img-wrap img {
    max-height: none;
    width: 100%;
    height: auto;
  }
  /* "Ampliar" mais visível e clicável */
  .techsheet-img-zoom {
    opacity: 1;
    transform: none;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    background: rgba(5, 20, 16, 0.86);
    font-size: 0.74rem;
  }
  .techsheet-img-zoom svg { width: 14px; height: 14px; }

  /* Rodapé fixo no fundo */
  .techsheet-foot {
    padding: 12px 16px max(12px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0), var(--paper));
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .techsheet-foot > span {
    font-size: 0.78rem;
    text-align: center;
  }
  .techsheet-foot .btn { width: 100%; justify-content: center; padding: 12px 18px; }

  /* Tabela HTML interna (caso seja usada) — mantém override */
  .techsheet-table thead th { padding: 12px 12px 10px; font-size: 0.85rem; }
  .techsheet-table thead th.th-spec { width: 30%; }
  .techsheet-table tbody th { padding: 12px; font-size: 0.74rem; white-space: normal; }
  .techsheet-table tbody td { padding: 12px; font-size: 0.86rem; }
  .ts-bullets li { font-size: 0.82rem; }
}

/* ===================== LIGHTBOX (zoom in-site) ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 32px;
  animation: lbFade 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 9, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: 96vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  animation: lbRise 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes lbRise {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-stage figcaption {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  font-weight: 600;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.16s, transform 0.16s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}
.lightbox-close svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .lightbox { padding: 16px; }
  .lightbox-stage img { max-height: 76vh; border-radius: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

/* ===================== VÍDEO INSTITUCIONAL ===================== */
.video-section {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at 88% 12%, rgba(201,169,97,0.10), transparent 38%),
    radial-gradient(circle at 12% 86%, rgba(45,191,148,0.10), transparent 38%),
    linear-gradient(180deg, #fdfaf2 0%, var(--cream) 100%);
  overflow: hidden;
}
/* Header do vídeo: título centralizado e prominente acima do frame */
.video-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  padding: 0 16px;
}
.video-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 12px;
}
.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.video-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}
.video-lead {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .video-header { margin-bottom: 26px; }
  .video-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; }
  .video-lead { font-size: 0.92rem; }
}

.video-frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 30px 70px rgba(8, 24, 19, 0.22),
    0 0 0 1px rgba(201, 169, 97, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  background: var(--teal-900);
  aspect-ratio: 16 / 9;
}
/* Versão inline dentro de outras seções (ex.: Vantagens) — um pouco
   mais compacta e com margem inferior pra separar do que vem depois. */
.video-frame-inline {
  max-width: 880px;
  margin: 0 auto 36px;
  border-radius: 18px;
}

/* Thumbnail clicável (lite-youtube): só carrega o iframe ao clicar
   — performance + privacidade (não embute YouTube antes do play). */
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--teal-900);
  background-size: cover;
  background-position: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  display: block;
  transition: transform 0.4s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.video-thumb:hover { transform: scale(1.005); }

.video-thumb-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 56%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(5,15,18,0.0) 30%, rgba(5,15,18,0.7) 100%);
  transition: opacity 0.3s ease;
}
.video-thumb:hover .video-thumb-shade { opacity: 0.85; }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 9vw, 110px);
  height: clamp(72px, 9vw, 110px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-3));
  color: #1c1206;
  display: grid;
  place-items: center;
  box-shadow:
    0 18px 38px rgba(201, 169, 97, 0.45),
    0 0 0 6px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(243, 217, 149, 0.6);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s;
}
.video-play svg {
  width: 40%;
  height: 40%;
  margin-left: 8%;   /* compensa o triângulo do play */
}
.video-play::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(243, 217, 149, 0.35);
  animation: videoPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes videoPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50%      { transform: scale(1.12); opacity: 0; }
}
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 22px 48px rgba(201, 169, 97, 0.55),
    0 0 0 8px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(243, 217, 149, 0.75);
}

.video-thumb-info {
  position: absolute;
  left: 28px; right: 28px;
  bottom: 22px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.video-thumb-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-2);
}
.video-thumb-info strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
}

/* Estado depois do play: iframe ocupa todo o frame */
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 820px) {
  .video-section { padding: 60px 0 48px; }
  .video-frame { border-radius: 16px; }
  .video-thumb-info { left: 18px; right: 18px; bottom: 16px; }
  .video-thumb-info strong { font-size: 0.96rem; }
  .video-thumb-eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; }
  .video-play { box-shadow: 0 14px 30px rgba(201,169,97,0.45), 0 0 0 4px rgba(255,255,255,0.08); }
}
@media (max-width: 520px) {
  .video-section { padding: 44px 0 36px; }
  .video-thumb-info strong { font-size: 0.88rem; }
}

.program-benefits-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(45,191,148,0.08), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(201,169,97,0.12), transparent 34%),
    linear-gradient(180deg, #fff, var(--bone));
  position: relative;
  overflow: hidden;
}
.program-benefits-section::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background:
    linear-gradient(rgba(15,102,80,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,102,80,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.program-benefits-section .container {
  position: relative;
  z-index: 1;
}

.advantages-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.advantages-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold), var(--teal-500));
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.adv-item {
  position: relative;
  padding: 40px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, transform 0.3s ease;
  outline: none;
}
.adv-item:hover,
.adv-item:focus {
  background: var(--bone);
  transform: translateY(-3px);
}
.adv-item:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(45,191,148,0.38);
}
.adv-item:nth-child(3n) { border-right: none; }
.adv-item:nth-last-child(-n+3) { border-bottom: none; }
.adv-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-50), #fff);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  margin: 0 auto 20px;
  box-shadow: 0 8px 22px rgba(15,102,80,0.08);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.adv-ico svg { width: 28px; height: 28px; }
.adv-item:hover .adv-ico,
.adv-item:focus .adv-ico {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  color: var(--gold-2);
  transform: scale(1.06);
}
.adv-item h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.adv-item p {
  font-size: 0.93rem;
  color: var(--text-soft);
  max-width: 280px;
  margin: 0 auto;
}

/* Hover reveal só em desktop largo + dispositivos com hover real.
   Adicionada a condição min-width pra evitar que tablets/celulares
   (especialmente Samsung Internet e Android híbridos) executem esse
   bloco e empilhem o <p> absoluto por cima do conteúdo no toque. */
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .advantages-grid .adv-item {
    min-height: 260px;                 /* +40px de espaço pra acomodar traduções */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    overflow: hidden;
  }
  .advantages-grid .adv-item::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    height: 84px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(250,248,243,0), rgba(232,246,240,0.92));
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
  }
  .advantages-grid .adv-item h3 {
    margin-bottom: 0;
    transition: transform 0.28s ease, color 0.28s ease;
  }
  .advantages-grid .adv-item p {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 1;
    max-width: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    /* Limita a 3 linhas pra não estourar — descrições traduzidas ficam
       mais longas que o original em pt-BR (EN/ES costumam ter 1 linha a mais). */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
  }
  .advantages-grid .adv-item:hover::after,
  .advantages-grid .adv-item:focus::after,
  .advantages-grid .adv-item:hover p,
  .advantages-grid .adv-item:focus p {
    opacity: 1;
    transform: translateY(0);
  }
  .advantages-grid .adv-item:hover h3,
  .advantages-grid .adv-item:focus h3 {
    color: var(--teal-800);
    /* Sobe mais o título pra abrir bastante espaço pra descrição */
    transform: translateY(-46px);
  }
  .advantages-grid .adv-item:hover .adv-ico,
  .advantages-grid .adv-item:focus .adv-ico {
    transform: translateY(-44px) scale(1.06);
  }
}

.advantages-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
  padding: 28px 0;
  position: relative;
}
.advantages-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.adv-stat {
  text-align: center;
  padding: 18px 18px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.adv-stat:last-child { border-right: none; }
.adv-stat-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(230,200,120,0.35);
  margin: 0 auto 10px;
}
.adv-stat-ico svg {
  width: 21px;
  height: 21px;
}
.adv-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.adv-stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.adv-stat-label em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ===================== LAB BANNER ===================== */
.lab-banner-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 18% 16%, rgba(201,169,97,0.12), transparent 30%),
    radial-gradient(circle at 86% 6%, rgba(45,191,148,0.10), transparent 30%),
    linear-gradient(180deg, var(--bone) 0%, #f6fbf7 48%, #eef7f2 100%);
}
.lab-banner-head {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  text-align: center;
}
.lab-banner-head .section-title {
  max-width: 860px;
  margin: 0 auto;
}
.lab-banner-head .section-sub {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.lab-banner-media {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  aspect-ratio: 2200 / 851;
  height: auto;
  min-height: 0;
  max-height: 420px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 26px;
  border: 1px solid rgba(15,102,80,0.16);
  box-shadow:
    0 28px 70px rgba(7,31,27,0.20),
    0 0 0 10px rgba(255,255,255,0.44);
}
.lab-banner-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,28,23,0.18), transparent 32%, rgba(5,22,21,0.16)),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.16));
  pointer-events: none;
}
.lab-banner-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===================== PRODUCT SECTIONS ===================== */
.product-carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--andro-bg-2);
}
.product-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.product-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.product-slide[aria-hidden="true"] {
  pointer-events: none;
}
.product-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(2,13,20,0.42);
  border: 1px solid rgba(230,200,120,0.24);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}
.product-carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-carousel-arrow:hover {
  background: rgba(230,200,120,0.18);
  transform: translateY(-1px);
}
.product-carousel-arrow svg {
  width: 19px;
  height: 19px;
}
.product-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.35);
  transition: width 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}
.product-dot.is-active {
  width: 30px;
  background: var(--gold-2);
  border-color: var(--gold-2);
}
.product-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 138px;
  color: #fff;
}
.product-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.product-section-inner.reverse {
  grid-template-columns: 1.05fr 1fr;
}
.product-andro {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,169,97,0.18), transparent 60%),
    linear-gradient(135deg, var(--andro-bg-1) 0%, var(--andro-bg-2) 100%);
}
.product-iatf {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,169,97,0.18), transparent 60%),
    linear-gradient(135deg, var(--iatf-bg-1) 0%, var(--iatf-bg-2) 100%);
}
.andro-bg, .iatf-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: lighten;
}
.product-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}
.product-spotlight {
  position: absolute;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(201,169,97,0.45), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}
.product-bag {
  position: relative;
  z-index: 2;
  max-height: 520px;
  width: auto;
  filter:
    drop-shadow(0 40px 50px rgba(0,0,0,0.55))
    drop-shadow(0 0 60px rgba(201,169,97,0.35));
}
.floating { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Composição "duo": lata 20.4kg (grande, direita) + balde 3kg (menor,
   esquerda, à frente). Layout em flex com sobreposição pequena e controlada
   por margem negativa — independente da largura da tela. */
.product-duo {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  height: clamp(320px, 44vh, 500px);
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.product-duo img {
  position: relative;
  width: auto;
  filter:
    drop-shadow(0 30px 44px rgba(0,0,0,0.5))
    drop-shadow(0 0 48px rgba(201,169,97,0.26));
}
.product-duo-front {        /* lata 20.4 kg — grande, à direita, ao fundo */
  height: 100%;
  order: 2;
  z-index: 1;
}
.product-duo-back {         /* balde 3 kg — menor, à esquerda, à frente */
  height: 58%;
  order: 1;
  z-index: 2;
  /* sobrepõe só uma pequena parte da lateral da lata */
  margin-right: -5%;
}
@media (max-width: 820px) {
  .product-duo { height: clamp(250px, 40vh, 380px); width: min(100%, 440px); }
}
@media (max-width: 520px) {
  .product-duo { height: clamp(220px, 36vh, 320px); }
  .product-duo-back { height: 54%; margin-right: -6%; }
}

.product-emblem {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,97,0.5);
  background: rgba(201,169,97,0.08);
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.product-emblem svg { width: 16px; height: 16px; flex-shrink: 0; display: block; }
.product-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  margin-bottom: 14px;
  white-space: nowrap;
}
.product-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
  margin-bottom: 26px;
}
.product-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.6), transparent);
}
.divider-ico {
  width: 22px; height: 22px;
  color: var(--gold-2);
  flex-shrink: 0;
  display: block;
}
.product-lead {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  max-width: 540px;
}
.product-lead strong { color: var(--gold-2); font-weight: 600; }

.product-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 560px;
}
.product-benefits-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.95);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,169,97,0.18);
}
.product-benefits-list li:last-child { border-bottom: none; }
.bcheck {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.5);
  background: rgba(201,169,97,0.1);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bcheck svg { width: 16px; height: 16px; }

.product-cta-block {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(201,169,97,0.06);
  border: 1px solid rgba(201,169,97,0.3);
  flex-wrap: wrap;
}
.cta-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-text-ico {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-2);
  color: var(--andro-bg-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  overflow: hidden;
}
.cta-text .cta-text-ico { color: var(--andro-bg-1); }
.cta-text-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.product-iatf .cta-text .cta-text-ico { color: var(--iatf-bg-1); }
.cta-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.cta-text span {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-2);
  letter-spacing: 0.04em;
}
.cta-text .cta-text-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  letter-spacing: 0;
}

/* ===================== CTA BAND / CADASTRO ===================== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #fff;
}
.cta-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(15,102,80,0.35), transparent 60%),
    linear-gradient(135deg, rgba(5,15,18,0.92) 0%, rgba(5,43,34,0.85) 50%, rgba(14,102,80,0.5) 100%);
  z-index: 1;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.cta-text-block .cta-logo {
  height: 56px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.cta-text-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.cta-text-block h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-2);
  font-weight: 700;
}
.cta-text-block p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 480px;
}

.cta-kit-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,97,0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
  max-width: 480px;
}
.cta-kit-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
}
.cta-kit-card strong {
  display: block;
  font-size: 1rem;
  color: var(--gold-2);
  margin-bottom: 4px;
  font-weight: 700;
}
.cta-kit-card span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.cta-action-pill svg { width: 14px; height: 14px; color: var(--teal-300); }

.cta-form {
  position: relative;
  background: rgba(255,255,255,0.97);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1.5px var(--gold),
    0 0 32px rgba(201, 169, 97, 0.28);
  border: 1px solid var(--gold);
  backdrop-filter: blur(8px);
}
.cta-form::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--gold-3), var(--gold), var(--gold-2));
  z-index: -1;
  opacity: 0.6;
  filter: blur(8px);
  pointer-events: none;
}
.cta-form-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 24px;
}
.cta-form-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}
.cta-form-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.cta-form h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--teal-900);
  margin-bottom: 0;
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-900);
}
.city-helper {
  display: block;
  min-height: 1.1em;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
}

/* Toggle Brasil / Outro país (etapa 3 do formulário) */
.location-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.location-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-soft);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.location-radio input { position: absolute; opacity: 0; pointer-events: none; }
.location-radio:hover { color: var(--teal-800); }
.location-radio.is-active {
  background: linear-gradient(180deg, #fff, var(--teal-50));
  color: var(--teal-800);
  box-shadow:
    0 6px 14px rgba(15, 102, 80, 0.12),
    inset 0 0 0 1.5px var(--teal-300);
}
.location-radio-ico {
  width: 18px; height: 18px;
  display: grid;
  place-items: center;
  color: currentColor;
  opacity: 0.7;
}
.location-radio-ico svg { width: 18px; height: 18px; }
.location-radio.is-active .location-radio-ico { opacity: 1; color: var(--teal-700); }

.location-fields[hidden] { display: none; }

/* Campo de cidade com botão X integrado para limpar e escolher de novo */
.city-input-wrap {
  position: relative;
}
.city-input-wrap input {
  padding-right: 42px;        /* espaço pro botão X */
}
/* Esconde a setinha nativa do <datalist> (Chrome/Edge) para não competir
   com o botão X de limpar — o usuário interage só pelo X ou digitando. */
.city-input-wrap input::-webkit-calendar-picker-indicator {
  display: none !important;
  opacity: 0;
}
.city-input-wrap input::-webkit-list-button { display: none !important; }
.city-input-wrap input { background-image: none !important; }

.city-clear {
  position: absolute !important;
  top: 50% !important;
  right: 8px !important;
  transform: translateY(-50%);
  width: 26px !important;
  height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none;
  /* Reseta TUDO que o user-agent (Safari/Chrome) força em <button> */
  appearance: none;
  -webkit-appearance: none;
  background: #c8342f !important;   /* vermelho hardcoded — não depende de var */
  color: #fff !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  line-height: 0 !important;
  font-size: 0 !important;
  box-shadow: 0 3px 8px rgba(200, 52, 47, 0.4);
  transition: background-color 0.14s, transform 0.14s, box-shadow 0.14s;
  z-index: 2;
}
.city-clear[hidden] { display: none !important; }
.city-clear svg {
  width: 14px !important;
  height: 14px !important;
  display: block;
  color: #fff !important;
  stroke: #fff !important;
  fill: none !important;
  pointer-events: none;
}
.city-clear:hover,
.city-clear:focus {
  background: #a52a26 !important;
  box-shadow: 0 5px 12px rgba(200, 52, 47, 0.55);
  outline: none;
}
.city-clear:focus-visible {
  box-shadow:
    0 5px 12px rgba(200, 52, 47, 0.55),
    0 0 0 3px rgba(200, 52, 47, 0.25);
}
.city-clear:active { transform: translateY(-50%) scale(0.92); }
.cta-field input,
.cta-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(15,102,80,0.18);
  border-radius: 12px;
  font-size: 0.96rem;
  font-family: inherit;
  background: var(--bone);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cta-field input:disabled {
  opacity: 0.68;
  cursor: not-allowed;
}
.cta-field input[readonly] {
  cursor: progress;
}
.cta-field input:focus,
.cta-field select:focus {
  outline: none;
  border-color: var(--teal-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 191, 148, 0.14);
}
.cta-field input.error,
.cta-field select.error {
  border-color: #c8342f;
  background: #fef4f4;
}
.cta-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e6650' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 36px;
  cursor: pointer;
}

/* Linha UF + Cidade: UF estreita */
.cta-row-uf { grid-template-columns: 110px 1fr; }
.cta-field-uf select { font-weight: 600; }

.cta-products { margin: 18px 0 22px; }
.cta-products-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 12px;
}
.product-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-select-2 {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cta-products-hint {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}
.ps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 12px;
  border: 2px solid rgba(15,102,80,0.14);
  border-radius: var(--radius);
  background: var(--bone);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.ps-card:hover {
  border-color: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.ps-card:focus-visible {
  outline: 3px solid rgba(45, 191, 148, 0.36);
  outline-offset: 3px;
}
.ps-card input { position: absolute; opacity: 0; pointer-events: none; }
.ps-card.selected {
  border-color: var(--teal-500);
  background: linear-gradient(180deg, #fff, var(--teal-50));
  box-shadow:
    0 14px 30px rgba(45, 191, 148, 0.25),
    inset 0 0 0 1px rgba(45, 191, 148, 0.48);
}
.ps-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-img img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
}
/* Composição lata + saco nos cards de seleção do formulário */
.ps-img-duo { position: relative; height: 90px; }
.ps-img-duo img {
  position: absolute;
  bottom: 0;
  max-height: none;
}
.ps-img-duo .ps-duo-front {
  height: 100%;
  left: 50%;
  transform: translateX(-62%);
  z-index: 2;
}
.ps-img-duo .ps-duo-back {
  height: 70%;
  left: 50%;
  transform: translateX(0%);
  z-index: 1;
  opacity: 0.96;
}
.ps-img-all {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-800));
  border-radius: 10px;
  width: 100%;
  height: 80px;
  color: #fff;
}
.ps-img-all svg { width: 28px; height: 28px; }
.ps-info strong {
  display: block;
  font-size: 0.88rem;
  color: var(--teal-900);
}
.ps-info span {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.ps-check {
  position: absolute;
  top: 10px; right: 10px;
  width: 24px; height: 24px;
  border: 2px solid rgba(15,102,80,0.22);
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s ease;
}
.ps-card.selected .ps-check {
  background: var(--teal-500);
  border-color: var(--teal-500);
  box-shadow: 0 8px 18px rgba(45, 191, 148, 0.32);
}
.ps-card.selected .ps-check::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.cta-form .btn-stack {
  width: auto;
  min-width: 240px;
  max-width: 100%;
  flex-direction: row;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.98rem;
}
.cta-form .btn-stack-ico {
  width: 34px;
  height: 34px;
}
.cta-form .btn-stack-ico svg {
  width: 18px;
  height: 18px;
}

.cta-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 50px 36px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
  animation: successIn 0.6s ease;
}
.form-success.show { display: block; }
.success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.success-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-700);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/36px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/36px no-repeat;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-success p { color: rgba(255,255,255,0.88); }
@keyframes successIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5,15,18,0.55), rgba(5,15,18,0.85) 65%, rgba(5,15,18,0.95)),
    url('../img/backgrounds/faq.png') center/cover no-repeat;
  color: #fff;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45,191,148,0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(74,14,26,0.25), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(10,31,61,0.3), transparent 50%);
  pointer-events: none;
}
.faq-section .container { position: relative; z-index: 1; }

/* Texto da head em claro */
.faq-section .section-eyebrow { color: var(--gold-2); }
.faq-section .section-title { color: #fff; }
.faq-section .section-title em { color: var(--teal-300); }
.faq-section .section-sub { color: rgba(255,255,255,0.78); }
.faq-section .faq-cta p { color: rgba(255,255,255,0.78); }

/* Grid de duas colunas em desktop. Mobile cai pra 1 coluna. */
.faq-list {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  align-items: start;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover { border-color: var(--teal-200); }
.faq-item[open] {
  border-color: var(--teal-400);
  box-shadow: 0 10px 26px rgba(15, 102, 80, 0.1);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-700); }
.faq-chev {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.3s ease;
}
.faq-chev svg { width: 16px; height: 16px; }
.faq-item[open] .faq-chev {
  background: var(--teal-600);
  color: #fff;
  transform: rotate(180deg);
}
.faq-body {
  padding: 0 20px 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  animation: faqOpen 0.35s ease;
}
.faq-body strong { color: var(--teal-700); font-weight: 600; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-cta {
  text-align: center;
  margin-top: 8px;
}
.faq-cta p {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 14px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  position: relative;
  color: var(--text-light);
  padding: 40px 0 0;
  background:
    linear-gradient(135deg,
      var(--iatf-bg-1) 0%,
      var(--iatf-bg-2) 22%,
      var(--ink) 50%,
      var(--andro-bg-2) 78%,
      var(--andro-bg-1) 100%);
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(45,191,148,0.28), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(74,14,26,0.35), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(10,31,61,0.4), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.site-footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--iatf-bg-1) 0%, var(--gold) 35%, var(--teal-400) 65%, var(--andro-bg-1) 100%);
}
.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-light-soft);
  max-width: 320px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-social {
  display: flex;
  gap: 6px;
}
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: var(--teal-500);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social svg { width: 14px; height: 14px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--teal-200); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact div {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.footer-contact svg {
  width: 14px; height: 14px;
  color: var(--teal-300);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 24px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}
.footer-bottom a { color: inherit; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--teal-200); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.04); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ===================== TRADUTOR (Globe FAB) ===================== */
.lang-fab {
  position: fixed;
  right: 24px;
  bottom: 96px;                /* acima do botão do WhatsApp */
  z-index: 80;                 /* acima do WhatsApp float (60) */
  width: 60px;                 /* mesmo tamanho do WhatsApp */
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-800);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  pointer-events: auto;
  box-shadow:
    0 14px 30px rgba(8, 24, 19, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  padding: 0;
  font-family: var(--font-display);
  appearance: none;
  -webkit-appearance: none;
}
.lang-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 18px 36px rgba(8, 24, 19, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.lang-fab svg {
  width: 18px;
  height: 18px;
  color: var(--teal-700);
  margin-top: -2px;
}
.lang-fab-code {
  display: block;
  font-size: 0.95rem;          /* código maior e em destaque */
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 3px;
  color: var(--teal-800);
}

/* No mobile: mesmo tamanho 60×60, só ajusta a posição */
@media (max-width: 820px) {
  .lang-fab {
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 60px;
    height: 60px;
  }
  .lang-fab svg { width: 18px; height: 18px; }
  .lang-fab-code { font-size: 0.95rem; }
}

/* Modal de seleção de idioma */
.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: langFade 0.2s ease-out;
}
.lang-modal[hidden] { display: none; }
@keyframes langFade { from { opacity: 0; } to { opacity: 1; } }
.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 16, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  background: var(--paper);
  border-radius: 22px;
  padding: 22px 20px 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: langRise 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes langRise {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lang-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.lang-modal-head h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--teal-900);
  letter-spacing: 0.02em;
}
.lang-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.lang-modal-close:hover { background: var(--bone); color: var(--text); }
.lang-modal-close svg { width: 16px; height: 16px; }

.lang-modal-list {
  display: grid;
  gap: 6px;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text);
  text-align: left;
  transition: background 0.16s, border-color 0.16s, color 0.16s;
}
.lang-opt:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
}
.lang-opt.is-active {
  border-color: var(--teal-600);
  background: linear-gradient(180deg, #fff, var(--teal-50));
  box-shadow: inset 0 0 0 1px var(--teal-600);
  color: var(--teal-800);
}
.lang-flag {
  font-size: 1.4rem;
  line-height: 1;
  flex: none;
}
.lang-name { flex: 1 1 auto; font-weight: 600; }
.lang-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  background: var(--bone);
  border-radius: 999px;
  padding: 3px 9px;
}
.lang-opt.is-active .lang-tag {
  background: var(--teal-700);
  color: var(--gold-3);
}

/* ===================== ESCONDER UI NATIVA DO GOOGLE TRANSLATE =====================
   IMPORTANTE: o container #google_translate_element NÃO pode receber display:none,
   senão o widget não inicializa. Por isso usamos posição off-screen no HTML.
   Também NÃO forçamos body{position} pra não quebrar elementos sticky/fixed. */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-te-balloon-frame,
iframe.skiptranslate { display: none !important; }
/* Google Translate seta html/body com margin-top:40px e top:40px pro banner.
   Como escondemos o banner, devolvemos a margem ao zero. */
html { margin-top: 0 !important; }
body { top: 0 !important; }
.goog-text-highlight {
  background-color: transparent !important;
  box-shadow: none !important;
}
font[style*="background-color"] { background: transparent !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget > span { display: none; }

/* ===================== ANIMATION INITIAL STATES =====================
   Estados pré-aplicados APENAS para elementos que o GSAP de fato
   controla. Não escondemos elementos por classe genérica (.reveal),
   para que mesmo sem JS ou se algo falhar, o conteúdo permaneça visível.
   GSAP usa gsap.set() para os demais estados iniciais.
   ===================================================================== */

/* Headline em linhas: wrapper esconde por overflow, inner começa pra baixo */
html.js .anim-line { display: block; overflow: hidden; }
html.js .anim-line-inner {
  display: block;
  transform: translate3d(0, 110%, 0);
  will-change: transform;
}

/* Headlines com palavras animadas (ANDRO BOOST / IATF BOOST) */
html.js [data-anim="headline-words"] .anim-word {
  display: inline-block;
  transform: translate3d(0, 110%, 0);
  opacity: 0;
  will-change: transform, opacity;
}

/* Aura dourada atrás dos sacos cresce com a entrada */
html.js .product-spotlight { transform: scale(0.4); opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html.js .anim-line-inner,
  html.js [data-anim="headline-words"] .anim-word,
  html.js .product-spotlight {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-slide-main .hero-slide-content {
    transform: translate(0, -24px);
  }
  .hero-split-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-slide-product-pack { min-height: 360px; }
  .hero-slide-product-pack img,
  .hero-slide-flyer img { max-height: 360px; }
  .hero-slide-text { margin: 0 auto; max-width: 620px; }
  .hero-slide-product .hero-title,
  .hero-slide-product .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-slide-product .hero-ctas { justify-content: center; }

  .advantages-products { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
  .adv-product img { height: 170px; }
  .adv-product-kit img { height: 200px; }
  .adv-duo { height: 170px; }

  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .adv-item:nth-child(2n) { border-right: none; }
  .adv-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .adv-item:nth-last-child(-n+2) { border-bottom: none; }

  .advantages-stats { grid-template-columns: repeat(2, 1fr); }
  .adv-stat:nth-child(2n) { border-right: none; }
  .adv-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .lab-banner-media { max-height: 360px; }

  .product-section-inner,
  .product-section-inner.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  /* IATF (reverse) usa o MESMO layout do Andro no mobile: imagem primeiro,
     info depois. order negativo no visual + order positivo no info. */
  .product-section-inner.reverse .product-visual { order: -1; }
  .product-section-inner.reverse .product-info { order: 1; }
  .product-divider { margin-left: auto; margin-right: auto; }
  .product-benefits-list { margin-left: auto; margin-right: auto; text-align: left; }
  .product-cta-block { margin: 0 auto; }
  .product-visual { min-height: 460px; }
  .product-bag { max-height: 420px; }
  .product-lead { margin-left: auto; margin-right: auto; }

  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================================
   TABLET / MOBILE (≤ 820px)
   ======================================================== */
@media (max-width: 820px) {
  /* Topbar enxuto */
  .topbar-inner { padding: 7px 16px; gap: 12px; }
  .topbar-info { gap: 10px; flex: 1; min-width: 0; }
  .topbar-item { display: none; }
  .topbar-info .pill {
    font-size: 0.6rem;
    padding: 4px 10px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .topbar-social { gap: 2px; flex-shrink: 0; }

  /* Header */
  .header-inner { padding: 0 16px; gap: 10px; }
  .brand img { height: 38px; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 20px;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    margin: 0;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    max-height: calc(100vh - var(--header-h) - 20px);
    overflow-y: auto;
    z-index: 99;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }

  /* Espaçamento vertical das seções — compacto pra fit em viewport */
  .section { padding: 44px 0; }
  .product-section { padding: 48px 0; }
  .advantages-section, .program-benefits-section, .faq-section { padding: 44px 0; }
  .lab-banner-section { padding: 44px 0; }
  .cta-band { padding: 44px 0; }
  .container { padding: 0 18px; }

  .section-head { margin-bottom: 22px; }
  .section-head.text-center { margin-bottom: 22px; }
  .section-title { font-size: clamp(1.45rem, 5.8vw, 1.9rem); line-height: 1.18; }
  .section-sub { font-size: 0.9rem; line-height: 1.45; }
  .section-eyebrow { font-size: 0.68rem; margin-bottom: 8px; letter-spacing: 0.18em; }

  /* No mobile o scroll-snap "prende" o topo das seções e esconde o conteúdo
     de baixo em seções mais altas que a viewport. Mantemos apenas o offset
     de scroll para âncoras (links #) não ficarem atrás do header sticky. */
  html { scroll-padding-top: calc(var(--header-h) + 8px); }

  /* Hero — banner principal: ocupa exatamente o viewport disponível.
     min-height usa min() para nunca exceder a viewport real (evita
     hero estourar a tela em landscape e em phones com viewport curta). */
  .hero {
    height: calc(100svh - var(--topbar-h) - var(--header-h));
    min-height: min(460px, calc(100svh - var(--topbar-h) - var(--header-h)));
    max-height: 760px;
  }
  .hero-slide-content { padding: 0 18px; }
  .hero-slide-main .hero-slide-media { background-position: 30% center; }
  .hero-slide-main .hero-slide-content { transform: none; }
  .hero-slide-main .hero-title,
  .hero-slide-main .hero-sub { max-width: 100%; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.08; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 0.88rem; }
  .hero-ctas .btn svg { width: 16px; height: 16px; }

  /* Hero — slide de produto: layout vertical que enche o viewport
     com o saco ancorado na metade inferior, sem cropar */
  .hero-slide-product { align-items: stretch; }
  .hero-slide-product .hero-slide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px 0 0;
  }
  .hero-slide-product .hero-split-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 14px;
    text-align: center;
    padding: 0 18px;
    height: 100%;
  }
  .hero-slide-text {
    flex: 0 0 auto;
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-slide-product .hero-title,
  .hero-slide-product .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-slide-product .hero-ctas { justify-content: center; }

  /* O pack toma o espaço restante e o saco fica colado ao fundo */
  .hero-slide-product-pack {
    flex: 1 1 0;
    min-height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  .hero-slide-product-pack img,
  .hero-slide-flyer img {
    height: 100%;
    max-height: 100%;
    max-width: 92%;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
    animation: floatProductPack 6s ease-in-out infinite;
  }
  /* Aura dourada compacta atrás do saco */
  .hero-slide-product-pack::before {
    width: min(420px, 88%);
    aspect-ratio: 1;
    transform: translateY(8%);
    filter: blur(20px);
  }
  .hero-slide-product-pack::after {
    width: min(500px, 100%);
    aspect-ratio: 1.1;
    filter: blur(14px);
  }

  /* Centraliza linhas individuais do título "stack" no contexto mobile */
  .hero-title-stack { align-items: center; }
  .hero-title-stack .title-line-gold { align-self: center; width: auto; }

  /* Setas do hero discretas, dots maiores pra toque */
  .hero-arrow {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.14);
  }
  .hero-arrow svg { width: 14px; height: 14px; }
  .hero-arrow-prev { left: 8px; }
  .hero-arrow-next { right: 8px; }
  .hero-dots { bottom: 14px; gap: 6px; }
  .hero-dot { width: 7px; height: 7px; }
  .hero-dot.is-active { width: 22px; }

  /* === Lab banner (Bastidores) === */
  .lab-banner-head { margin-top: 24px; }
  .lab-banner-media {
    max-height: none;
    border-radius: 16px;
    box-shadow:
      0 14px 32px rgba(7,31,27,0.16),
      0 0 0 4px rgba(255,255,255,0.4);
  }
  .lab-banner-media img { object-position: 62% center; }

  /* === Caixa de Vantagens === */
  /* Trio horizontal compacto: 3 produtos lado a lado */
  .advantages-products {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 22px;
  }
  .advantages-bg {
    background-size: cover, cover, cover, cover, auto 100%;
    background-position: center, center, center, center, right top;
    background-repeat: no-repeat;
  }
  .adv-product { padding: 14px 8px 12px; }
  .adv-product img { height: 80px; }
  .adv-product-kit img { height: 96px; }
  .adv-duo { height: 96px; margin-bottom: 8px; }
  .adv-product figcaption strong { font-size: 0.78rem; line-height: 1.2; }
  .adv-product figcaption span { font-size: 0.66rem; }
  .adv-product-kit::after { font-size: 0.5rem; padding: 3px 8px; top: -8px; letter-spacing: 0.1em; }

  /* Cards de vantagens em grid 2 colunas (mais compacto que 1) */
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .adv-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 14px;
    min-height: auto;
    display: block;
    overflow: visible;
    text-align: center;
  }
  .adv-item:nth-child(2n) { border-right: none; }
  .adv-item:nth-last-child(-n+2) { border-bottom: none; }
  .adv-item::after { display: none; }
  .adv-item h3 {
    margin-bottom: 4px;
    transform: none !important;
    font-size: 0.85rem;
    line-height: 1.2;
  }
  .adv-item p {
    position: static;
    max-width: 100%;
    font-size: 0.74rem;
    line-height: 1.4;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .adv-ico { width: 40px; height: 40px; margin: 0 auto 10px; }
  .adv-ico svg { width: 18px; height: 18px; }
  .advantages-grid .adv-item:hover .adv-ico,
  .advantages-grid .adv-item:focus .adv-ico { transform: scale(1.06); }

  /* Stats em linha de 4 (compacto) */
  .advantages-stats { grid-template-columns: 1fr 1fr 1fr 1fr; padding: 14px 4px; }
  .adv-stat { padding: 8px 4px; }
  .adv-stat { border-right: 1px solid rgba(255,255,255,0.08); }
  .adv-stat:last-child { border-right: none; }
  .adv-stat-num { font-size: 1rem; margin-bottom: 2px; }
  .adv-stat-label { font-size: 0.58rem; line-height: 1.15; }
  .adv-stat-label em { font-size: 0.54rem; margin-top: 1px; }
  .adv-stat-ico { display: none; }

  /* === Banners de produto (Andro / IATF) === */
  .product-section-inner,
  .product-section-inner.reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  /* IATF (reverse) — mesmo layout do Andro no mobile: imagem em cima */
  .product-section-inner.reverse .product-visual { order: -1; }
  .product-section-inner.reverse .product-info { order: 1; }
  .product-emblem {
    font-size: 0.6rem;
    padding: 6px 14px;
    margin-bottom: 14px;
    letter-spacing: 0.14em;
  }
  .product-headline {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    margin-bottom: 10px;
  }
  .product-divider { margin: 0 auto 14px; max-width: 200px; }
  .product-lead {
    margin: 0 auto 16px;
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 480px;
  }
  .product-benefits-list {
    margin: 0 auto 18px;
    text-align: left;
    gap: 4px;
    max-width: 420px;
  }
  .product-benefits-list li {
    font-size: 0.85rem;
    padding: 7px 0;
    gap: 10px;
  }
  .bcheck { width: 26px; height: 26px; }
  .bcheck svg { width: 13px; height: 13px; }
  .product-visual { min-height: 220px; }
  .product-bag { max-height: 240px; }
  .product-spotlight { width: 280px; height: 280px; }
  .product-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }
  .product-cta-block .cta-text > div { text-align: center; }
  .product-cta-block .btn { width: auto; }
  .cta-text { justify-content: center; }

  /* === Cadastro === */
  .cta-grid { grid-template-columns: 1fr; gap: 22px; }
  .cta-text-block { text-align: center; }
  .cta-text-block .cta-logo { margin: 0 auto 10px; height: 38px; }
  .cta-text-block h2 { font-size: clamp(1.35rem, 5.8vw, 1.8rem); margin-bottom: 10px; }
  .cta-text-block p { margin: 0 auto 16px; font-size: 0.88rem; line-height: 1.45; }
  .cta-actions { justify-content: center; gap: 8px; }
  .cta-action-pill { padding: 6px 12px; font-size: 0.74rem; }
  .cta-kit-card { margin: 0 auto 16px; padding: 10px; gap: 12px; max-width: 100%; }
  .cta-kit-card img { width: 56px; height: 56px; }
  .cta-kit-card strong { font-size: 0.85rem; }
  .cta-kit-card span { font-size: 0.72rem; line-height: 1.35; }

  .cta-form { padding: 18px 16px; border-radius: 18px; }
  .cta-form h4 { font-size: 1.05rem; margin-bottom: 10px; }
  .cta-form-head { margin-bottom: 10px; }
  .cta-row { grid-template-columns: 1fr; gap: 8px; margin-bottom: 8px; }
  .cta-row-uf { grid-template-columns: 80px 1fr; }
  .cta-field input,
  .cta-field select { padding: 9px 12px; font-size: 0.88rem; border-radius: 10px; }
  .cta-field span { font-size: 0.7rem; }
  .city-helper { font-size: 0.64rem; }
  .cta-products { margin: 12px 0 14px; }
  .cta-products-label { font-size: 0.7rem; margin-bottom: 8px; }
  .product-select { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ps-card { padding: 8px; }
  .ps-img { height: 50px; }
  .ps-img-duo { height: 64px; }
  .ps-img-all { height: 50px; }
  .ps-img-all svg { width: 22px; height: 22px; }
  .ps-info strong { font-size: 0.78rem; }
  .ps-info span { font-size: 0.66rem; }
  .cta-form .btn-stack { min-width: 180px; padding: 10px 18px; font-size: 0.88rem; }
  .btn-stack-ico { width: 26px; height: 26px; }
  .btn-stack-ico svg { width: 14px; height: 14px; }
  .cta-disclaimer { font-size: 0.66rem; margin-top: 8px; }

  /* === FAQ === */
  .faq-list { grid-template-columns: 1fr; gap: 6px; max-width: 100%; margin-bottom: 16px; }
  .faq-item { border-radius: 10px; }
  .faq-item summary { padding: 10px 14px; font-size: 0.82rem; line-height: 1.3; gap: 10px; }
  .faq-body { padding: 0 14px 12px; font-size: 0.78rem; line-height: 1.5; }
  .faq-chev { width: 24px; height: 24px; }
  .faq-chev svg { width: 12px; height: 12px; }
  .faq-cta p { font-size: 0.84rem; margin-bottom: 8px; }
  .faq-cta .btn { padding: 10px 18px; font-size: 0.85rem; }

  /* === Footer === */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; }
  .footer-brand img { height: 40px; }
  .footer-brand p { font-size: 0.84rem; max-width: 100%; }
  .footer-col h5 { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding: 12px 18px; }

  /* WhatsApp float */
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ========================================================
   PHONES (≤ 520px)
   ======================================================== */
@media (max-width: 520px) {
  .topbar-inner { padding: 6px 14px; }
  .topbar-info .pill {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
    padding: 3px 8px;
  }
  .topbar-social a { width: 24px; height: 24px; }
  .topbar-social svg { width: 12px; height: 12px; }

  .container { padding: 0 16px; }
  .header-inner { padding: 0 14px; }
  .brand img { height: 34px; }
  .menu-toggle { width: 38px; height: 38px; }
  .menu-toggle svg { width: 18px; height: 18px; }

  .section, .product-section, .advantages-section,
  .program-benefits-section, .faq-section,
  .lab-banner-section, .cta-band { padding: 36px 0; }

  /* Hero compacto */
  .hero {
    min-height: min(420px, calc(100svh - var(--topbar-h) - var(--header-h)));
    height: calc(100svh - var(--topbar-h) - var(--header-h));
    max-height: 640px;
  }
  .hero-slide-main .hero-slide-content .hero-title {
    max-width: 100%;
    font-size: clamp(1.5rem, 7vw, 1.85rem);
    line-height: 1.1;
  }
  .hero-slide-product .hero-title { font-size: clamp(1.4rem, 7vw, 1.85rem); }
  .hero-slide-product .hero-sub { margin-bottom: 14px; font-size: 0.85rem; }
  .hero-slide-product .hero-split-inner { gap: 10px; padding: 0 16px; }
  .hero-slide-product-pack { min-height: 150px; }
  .hero-arrow { display: none; }

  /* Lab banner */
  .lab-banner-media {
    aspect-ratio: 1.2 / 1;
    max-height: none;
    border-radius: 14px;
  }
  .lab-banner-media img { object-position: 64% center; }

  /* Vantagens — ainda mais compacto */
  .advantages-products { gap: 6px; margin-bottom: 16px; }
  .adv-product { padding: 10px 6px 10px; }
  .adv-product img { height: 64px; }
  .adv-product-kit img { height: 76px; }
  .adv-duo { height: 76px; margin-bottom: 6px; }
  .adv-product figcaption strong { font-size: 0.7rem; }
  .adv-product figcaption span { font-size: 0.6rem; }
  .adv-item { padding: 14px 10px; }
  .adv-item h3 { font-size: 0.78rem; }
  .adv-item p { font-size: 0.68rem; }
  .adv-ico { width: 34px; height: 34px; margin-bottom: 8px; }
  .adv-ico svg { width: 16px; height: 16px; }
  .advantages-stats { padding: 10px 4px; }
  .adv-stat-num { font-size: 0.92rem; }
  .adv-stat-label { font-size: 0.54rem; }
  .adv-stat-label em { font-size: 0.5rem; }

  /* Banners de produto */
  .product-emblem { font-size: 0.58rem; padding: 5px 12px; gap: 8px; margin-bottom: 12px; }
  .product-headline { font-size: clamp(1.55rem, 9vw, 2rem); }
  .product-lead { font-size: 0.85rem; }
  .product-benefits-list li { font-size: 0.8rem; padding: 6px 0; }
  .product-bag { max-height: 200px; }
  .product-visual { min-height: 200px; }
  .product-spotlight { width: 240px; height: 240px; }
  .product-cta-block { padding: 10px 14px; width: 100%; max-width: 320px; }
  .cta-text strong { font-size: 0.7rem; }
  .cta-text span { font-size: 0.78rem; }

  /* Cadastro */
  .cta-text-block h2 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .cta-form { padding: 16px 14px; border-radius: 16px; }
  .cta-form h4 { font-size: 0.98rem; }

  /* FAQ */
  .faq-item summary { padding: 9px 12px; font-size: 0.78rem; gap: 8px; }
  .faq-body { padding: 0 12px 10px; font-size: 0.76rem; }
  .faq-chev { width: 22px; height: 22px; }
  .faq-chev svg { width: 11px; height: 11px; }

  /* Footer */
  .footer-bottom { font-size: 0.66rem; }
}

/* ========================================================
   PHONES PEQUENOS (≤ 380px)
   ======================================================== */
@media (max-width: 380px) {
  .topbar-info .pill { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .container { padding: 0 14px; }

  .section, .product-section, .advantages-section,
  .program-benefits-section, .faq-section,
  .lab-banner-section, .cta-band { padding: 28px 0; }

  .hero-title { font-size: 1.4rem !important; }
  .hero-sub { font-size: 0.82rem; margin-bottom: 14px; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 8px; }
  .hero-ctas .btn { flex: 1 1 0; min-width: 0; padding: 11px 12px; font-size: 0.78rem; }

  .section-title { font-size: 1.3rem; }
  .section-sub { font-size: 0.82rem; }

  .product-headline { font-size: 1.55rem; }
  .product-bag { max-height: 170px; }
  .product-visual { min-height: 180px; }
  .product-lead { font-size: 0.82rem; }
  .product-benefits-list li { font-size: 0.76rem; padding: 5px 0; }

  .advantages-products { gap: 4px; }
  .adv-product { padding: 8px 4px 8px; }
  .adv-product img { height: 50px; }
  .adv-product-kit img { height: 60px; }
  .adv-duo { height: 60px; margin-bottom: 4px; }
  .adv-product figcaption strong { font-size: 0.62rem; }
  .adv-product figcaption span { font-size: 0.55rem; }
  .adv-product-kit::after { display: none; }

  .adv-item { padding: 12px 8px; }
  .adv-item h3 { font-size: 0.72rem; }
  .adv-item p { font-size: 0.62rem; }
  .adv-ico { width: 30px; height: 30px; margin-bottom: 6px; }
  .adv-ico svg { width: 14px; height: 14px; }

  .adv-stat-num { font-size: 0.82rem; }
  .adv-stat-label { font-size: 0.5rem; }

  .cta-form { padding: 14px 12px; }
  .cta-form h4 { font-size: 0.92rem; }
  .cta-row-uf { grid-template-columns: 72px 1fr; }
  .cta-field input,
  .cta-field select { padding: 8px 10px; font-size: 0.82rem; }
}

/* Defaults para texto alternativo do botão de CTA (desktop padrão) */
.cta-btn-mobile { display: none; }
.cta-btn-desktop { display: inline; }

/* ========================================================
   MOBILE — HERO PRODUTO REEQUILIBRADO + CTA BLOCK REDESENHADO
   (vem ao final do CSS para garantir prevalência)
   ======================================================== */
@media (max-width: 820px) {
  /* ---- Hero slides de produto: conteúdo centralizado verticalmente
     com respiro do topo (safe-area) e imagem com altura controlada ---- */
  .hero-slide-product .hero-slide-content {
    padding: max(44px, calc(env(safe-area-inset-top) + 24px)) 0 24px;
    justify-content: center;
  }
  .hero-slide-product .hero-split-inner {
    justify-content: center;
    gap: 16px;
    padding: 0 18px;
  }

  /* Quebra o wrapper de texto pra título, sub, imagem e botões virarem
     irmãos no flex column — assim podemos reordenar via `order`.
     Ordem desejada no mobile:
       1) título · 2) subtítulo · 3) imagem do produto · 4) botões */
  .hero-slide-product .hero-slide-text { display: contents; }
  .hero-slide-product .hero-title  { order: 1; margin-bottom: 0; }
  .hero-slide-product .hero-sub    { order: 2; margin-bottom: 0; }
  .hero-slide-product .hero-slide-product-pack { order: 3; }
  .hero-slide-product .hero-ctas   { order: 4; width: 100%; justify-content: center; }

  /* Pack toma altura controlada e fica balanceado (não mais "colado" ao fundo) */
  .hero-slide-product-pack {
    flex: 0 0 auto;
    min-height: 0;
    height: clamp(200px, 34vh, 340px);
    max-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 4px auto;
  }
  .hero-slide-product-pack img,
  .hero-slide-flyer img {
    height: 100%;
    max-height: 100%;
    max-width: 88%;
    width: auto;
    object-fit: contain;
    object-position: center center;
  }
  /* Duo no hero (mobile): preenche a altura do pack */
  .hero-slide-product-pack .hero-duo { height: 100%; }
  .hero-slide-product-pack .hero-duo .hero-duo-front { height: 100%; max-width: 60%; }
  .hero-slide-product-pack .hero-duo .hero-duo-back  { height: 60%; max-width: 42%; margin-right: -5%; }

  /* ---- CTA block compacto no mobile: pílula horizontal com ícone + botão.
     Texto "SEJA AFILIADO / REPRESENTE A LINHA" fica oculto pra dar lugar
     ao ícone + um CTA direto ("Quero me afiliar"). ---- */
  .product-cta-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 10px 6px 6px;
    border-radius: 999px;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.04));
    border: 1px solid rgba(201,169,97,0.32);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  }
  /* Esconde o texto "SEJA AFILIADO / REPRESENTE A LINHA" no mobile,
     mantendo o ícone visível como selo visual */
  .product-cta-block .cta-text {
    flex: 0 0 auto;
    gap: 0;
    margin: 0;
  }
  .product-cta-block .cta-text > div { display: none; }
  .product-cta-block .cta-text-ico {
    width: 38px;
    height: 38px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(201,169,97,0.32);
  }
  .product-cta-block .cta-text-ico svg { width: 19px; height: 19px; }

  /* Botão ocupa o resto do espaço da pílula */
  .product-cta-block .btn {
    flex: 1 1 auto;
    padding: 10px 16px;
    font-size: 0.88rem;
    border-radius: 999px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }
  .product-cta-block .btn svg { width: 15px; height: 15px; flex: none; }

  /* Troca o texto do botão pro versão mobile */
  .cta-btn-desktop { display: none; }
  .cta-btn-mobile  { display: inline; }
}

/* Phones pequenos: refina os tamanhos */
@media (max-width: 380px) {
  .product-cta-block { max-width: 100%; padding: 5px 8px 5px 5px; gap: 8px; }
  .product-cta-block .cta-text-ico { width: 34px; height: 34px; }
  .product-cta-block .cta-text-ico svg { width: 17px; height: 17px; }
  .product-cta-block .btn { font-size: 0.82rem; padding: 9px 12px; }
}

/* ========================================================
   FORMULÁRIO MULTI-ETAPAS
   Desktop: tudo visível (página única, como antes).
   Mobile (≤820px): cada etapa por vez, com indicador + nav.
   ======================================================== */

/* Por padrão (desktop): indicador, headers de etapa e botões
   de navegação ficam escondidos. Fieldsets viram contêineres
   neutros (sem borda/padding nativos do <fieldset>). */
.form-step {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  display: contents;
}
.form-steps-indicator,
.step-header { display: none; }
.step-actions { display: contents; }
.step-actions [data-step-next],
.step-actions [data-step-prev] { display: none; }

@media (max-width: 820px) {
  /* Indicador de progresso ----------------------------------- */
  .form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 18px;
    padding: 4px 0;
  }
  .step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bone);
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.78rem;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
    flex: none;
  }
  .step-dot.is-done {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    border-color: var(--teal-500);
    color: #fff;
  }
  .step-dot.is-done .step-dot-num { display: none; }
  .step-dot.is-done::after {
    content: '';
    width: 12px;
    height: 7px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
  }
  .step-dot.is-active {
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    border-color: var(--gold-3);
    color: #2b1f00;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(201,169,97,0.32);
  }
  .step-bar {
    flex: 1 1 auto;
    height: 2px;
    background: var(--line);
    border-radius: 999px;
    max-width: 38px;
    position: relative;
    overflow: hidden;
  }
  .step-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--teal-500), var(--gold));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .step-bar.is-filled::after { width: 100%; }

  /* Cabeçalho da etapa --------------------------------------- */
  .step-header {
    display: block;
    text-align: center;
    margin-bottom: 14px;
  }
  .step-eyebrow {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-700);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .step-header h5 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--teal-900);
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .step-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 320px;
    margin: 0 auto;
  }

  /* Mostrar só a etapa ativa --------------------------------- */
  .cta-form.is-multistep .form-step {
    display: none;
    animation: stepFadeIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .cta-form.is-multistep .form-step.is-active {
    display: block;
  }
  @keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* Folga ao topo pra qualquer scroll automático no formulário */
  .cta-form.is-multistep { scroll-margin-top: 16px; }

  /* Botões de navegação ------------------------------------- */
  .step-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }
  .step-actions [data-step-next],
  .step-actions [data-step-prev] {
    display: inline-flex;
  }
  .step-actions-pair { justify-content: space-between; align-items: center; }
  .step-actions-pair .cta-submit-wrap { flex: 1 1 auto; }

  .btn-step-next,
  .btn-step-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
  }
  .btn-step-next {
    flex: 1 1 auto;
    max-width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-3));
    color: #2b1f00;
    box-shadow: 0 10px 22px rgba(201,169,97,0.32);
  }
  .btn-step-next:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(201,169,97,0.4); }
  .btn-step-next:disabled,
  .btn-step-next.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }
  .btn-step-next svg { width: 16px; height: 16px; }

  .btn-step-back {
    background: transparent;
    color: var(--teal-700);
    border: 1.5px solid var(--line);
    flex: 0 0 auto;
  }
  .btn-step-back:hover {
    background: var(--teal-50);
    border-color: var(--teal-300);
    color: var(--teal-800);
  }
  .btn-step-back svg { width: 14px; height: 14px; }

  /* Última etapa: o submit ocupa todo o espaço ao lado do Voltar */
  .step-actions-pair .btn-step-back { padding: 10px 14px; }
  .step-actions-pair .cta-submit-wrap { display: block; }
  .step-actions-pair .cta-submit-wrap .btn-stack {
    width: 100%;
    margin: 0;
    min-width: 0;
  }
}

/* ========================================================
   MOBILE — HERO CENTRALIZADO + CONTROLES + FAB
   ======================================================== */
@media (max-width: 820px) {
  /* ---- Hero slide-main: centralizado, com logo maior e mais alto ---- */
  .hero-slide-main .hero-slide-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    /* Sobe o bloco inteiro para deixar logo + título mais próximos do topo */
    transform: translateY(-6%);
  }
  .hero-slide-main .hero-slide-content > * { max-width: 100%; }
  .hero-slide-main .hero-slide-content .hero-title,
  .hero-slide-main .hero-slide-content .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  /* Logo MAIOR e com aura mais generosa */
  .hero-slide-main .hero-slide-content .hero-logo-aura {
    margin: 0 auto 18px;
    width: clamp(200px, 58vw, 280px);
  }
  .hero-slide-main .hero-slide-content .hero-ctas {
    justify-content: center;
    width: 100%;
  }
  .hero-slide-main .hero-slide-content .hero-ctas .btn { flex: 1 1 auto; max-width: 280px; }
  .hero-title-line { display: block; }

  /* Background do hero principal: centralizado para apresentação balanceada */
  .hero-slide-main .hero-slide-media {
    background-position: center center;
    background-size: cover;
  }

  /* ---- Hero slides de produto: tipografia mais limpa e organizada ---- */
  .hero-slide-product .hero-title { margin-bottom: 14px; }
  .hero-title-stack {
    line-height: 1.0;
    gap: 6px;
    align-items: center;
  }
  .hero-title-stack .title-line-main {
    font-size: 1em;
    line-height: 1.05;
    letter-spacing: -0.005em;
  }
  .hero-title-stack .title-line-gold {
    font-size: 1.22em;
    line-height: 0.98;
    margin: 2px auto 4px;
    align-self: center;
    width: auto;
    padding: 0 4px;
  }
  .hero-title-stack .title-line-gold::after {
    bottom: -0.06em;
    height: 0.1em;
  }
  .hero-title-stack .title-line-sub {
    font-size: 0.74em;
    line-height: 1.15;
    margin-top: 6px;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.005em;
  }

  /* Backgrounds dos slides de produto: posicionamento balanceado */
  .hero-slide-media-andro,
  .hero-slide-media-iatf { background-position: center center; }

  /* ---- Controles do carrossel de produtos: fora da área do CTA ---- */
  .product-carousel-section { padding-bottom: 28px; }
  .product-carousel-controls {
    position: static;
    transform: none;
    /* display: flex (block) em vez de inline-flex para que margin auto centralize */
    display: flex;
    margin: 22px auto 0;
    width: max-content;
    max-width: calc(100% - 32px);
    justify-content: center;
  }
  /* Padding extra na base da seção pra garantir respiro antes dos controles */
  .product-section { padding-bottom: 12px; }

  /* ---- Topbar + Header + WhatsApp float escondidos: substituídos pelo FAB ---- */
  .topbar,
  .site-header,
  .whatsapp-float { display: none !important; }

  /* Como header/topbar somem, o hero passa a usar 100% da viewport */
  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
  }

  /* Garante distância segura do topo do hero pra status bar (notch) */
  .hero-slide-content { padding-top: max(20px, env(safe-area-inset-top)); }
}

/* ========================================================
   MOBILE FAB — bolinha flutuante com menu expansível
   ======================================================== */
.mobile-fab { display: none; }

@media (max-width: 820px) {
  .mobile-fab {
    display: block;
    position: fixed;
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 200;
  }

  .mobile-fab-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    color: var(--gold-3);
    display: grid;
    place-items: center;
    box-shadow:
      0 14px 36px rgba(8, 24, 19, 0.32),
      0 0 0 1px rgba(243, 217, 149, 0.28),
      inset 0 1px 0 rgba(255,255,255,0.18);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .mobile-fab-trigger::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,217,149,0.5), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .mobile-fab.is-open .mobile-fab-trigger {
    transform: rotate(180deg);
    box-shadow:
      0 18px 44px rgba(8, 24, 19, 0.4),
      0 0 0 2px rgba(243, 217, 149, 0.5);
  }
  .mobile-fab.is-open .mobile-fab-trigger::before { opacity: 1; }

  .mobile-fab-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: opacity 0.25s, transform 0.25s;
  }
  .mobile-fab-icon svg { width: 26px; height: 26px; }
  .mobile-fab-icon-close { opacity: 0; transform: rotate(-90deg); }
  .mobile-fab.is-open .mobile-fab-icon-open  { opacity: 0; transform: rotate(90deg); }
  .mobile-fab.is-open .mobile-fab-icon-close { opacity: 1; transform: rotate(0); }

  .mobile-fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 20, 16, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 199;
  }
  .mobile-fab.is-open ~ .mobile-fab-backdrop,
  .mobile-fab-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-fab-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: min(280px, calc(100vw - 32px));
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 14px;
    box-shadow:
      0 26px 60px rgba(0,0,0,0.28),
      0 0 0 1px rgba(201,169,97,0.22);
    transform: translateY(12px) scale(0.95);
    transform-origin: bottom right;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.28s;
  }
  .mobile-fab.is-open .mobile-fab-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .mobile-fab-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
  }
  .mobile-fab-brand img { height: 28px; width: auto; }
  .mobile-fab-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .mobile-fab-brand-text strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--teal-800);
    letter-spacing: 0.01em;
  }
  .mobile-fab-brand-text span {
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-fab-links {
    display: grid;
    gap: 2px;
    margin-bottom: 10px;
  }
  .mobile-fab-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.18s, color 0.18s;
  }
  .mobile-fab-link:hover,
  .mobile-fab-link:active {
    background: var(--teal-50);
    color: var(--teal-800);
  }
  .mobile-fab-link svg {
    width: 18px;
    height: 18px;
    color: var(--teal-600);
    flex: none;
  }

  .mobile-fab-divider {
    height: 1px;
    background: var(--line);
    margin: 6px 4px 8px;
  }

  .mobile-fab-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 4px 4px;
  }
  .mobile-fab-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: 14px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .mobile-fab-action:active { transform: scale(0.96); }
  .mobile-fab-action svg { width: 22px; height: 22px; }
  .mobile-fab-action-insta {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 18px rgba(220,39,67,0.32);
  }
  .mobile-fab-action-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 8px 18px rgba(37,211,102,0.32);
  }
}

/* ========================================================
   MOBILE — CORREÇÕES DE ENCAIXE (anti-corte de seções)
   Foco: garantir que cada seção caiba sem overflow horizontal,
   sem altura excessiva e sem elementos vazando da tela.
   ======================================================== */
@media (max-width: 820px) {
  /* Segurança extra contra qualquer elemento "vazando" pra direita
     (causa principal de rolagem horizontal indesejada no mobile) */
  body { width: 100%; max-width: 100vw; }
  .container,
  section,
  header,
  footer { max-width: 100%; }
  img, video, iframe { max-width: 100%; height: auto; }

  /* Filhos de flex/grid não podem forçar largura mínima maior que o
     contêiner — evita estouro horizontal em fontes grandes */
  .topbar-inner > *,
  .header-inner > *,
  .cta-grid > *,
  .footer-grid > *,
  .hero-split-inner > * { min-width: 0; }

  /* Botões e pills que costumam estourar largura em phone pequeno */
  .btn, .cta-action-pill, .adv-stat-label, .ps-info strong, .ps-info span {
    max-width: 100%;
  }

  /* Inputs e selects ocupam 100% da célula do grid */
  .cta-field { min-width: 0; }
  .cta-field input,
  .cta-field select { width: 100%; max-width: 100%; }

  /* Fix iOS: zoom automático ao focar em <input> se font-size < 16px.
     Mantemos visual compacto mas com tamanho mínimo de 16px nas fontes
     de input (apenas no foco do iOS, via tamanho computado abaixo). */
  .cta-field input,
  .cta-field select { font-size: max(0.88rem, 16px); }
}

/* Phones pequenos: stats em 2x2 em vez de 4 colunas (legibilidade) */
@media (max-width: 420px) {
  .advantages-stats { grid-template-columns: 1fr 1fr; }
  .adv-stat:nth-child(2n) { border-right: none; }
  .adv-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .adv-stat-num { font-size: 1.05rem; }
  .adv-stat-label { font-size: 0.66rem; }
  .adv-stat-label em { font-size: 0.6rem; }
}

/* Landscape em phones: viewport baixa. Como já escondemos topbar+header
   no mobile (substituídos pelo FAB), o hero usa 100% da viewport real. */
@media (max-width: 920px) and (orientation: landscape) and (max-height: 540px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
  }
  .hero-slide-product .hero-split-inner { gap: 8px; }
  .hero-slide-product-pack { min-height: 120px; }
  .hero-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .hero-sub { font-size: 0.82rem; margin-bottom: 12px; }
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn { padding: 9px 14px; font-size: 0.82rem; }

  /* Seções inteiras menos altas no landscape pra caberem melhor */
  .section, .product-section, .advantages-section,
  .program-benefits-section, .faq-section,
  .lab-banner-section, .cta-band { padding: 32px 0; }

  /* FAB ligeiramente menor em landscape pra não cobrir conteúdo */
  .mobile-fab-trigger { width: 52px; height: 52px; }
  .mobile-fab-icon svg { width: 22px; height: 22px; }
}
