/* =============================================================================
   GENOM — Síndrome do Olho Seco | Campanha Julho Turquesa
   Landing Page — CSS Unificado
   ============================================================================= */

/* =============================================================================
   1. @font-face — Barlow Condensed (campanha) + Open Sans (corpo)
   ============================================================================= */

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/BarlowCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/BarlowCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/BarlowCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../assets/fonts/BarlowCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Open Sans — corpo de texto */
@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/opensans-memvyags126mizpba-uvwbx2vvnxbbobj2ovts-muw.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../assets/fonts/opensans-memvyags126mizpba-uvwbx2vvnxbbobj2ovtscmu1ab.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* =============================================================================
   2. CSS Variables — Paleta Julho Turquesa (extraída dos PSDs)
   ============================================================================= */

:root {
  /* ─── Paleta Turquesa (cores reais dos PSDs) ─── */
  --teal-900:   #1e5a64;   /* sombra profunda / texto sobre turquesa */
  --teal-700:   #286e78;   /* ícone box — fill escuro */
  --teal-600:   #28828c;   /* ícone box — fill principal */
  --teal-500:   #3caabe;   /* médio */
  --teal-400:   #46bed2;   /* Box Azul / CTAs / hero claro */
  --teal-300:   #64b4be;   /* linha dos ícones stroke */
  --teal-200:   #8ed8e4;   /* hover / destaques leves */
  --teal-100:   #d0f0f4;   /* backgrounds claros */

  /* ─── Semânticos ─── */
  --primary:          var(--teal-400);   /* CTA principal */
  --primary-dark:     var(--teal-600);   /* hover CTA */
  --bg-hero:          var(--teal-500);   /* fundo hero */
  --bg-quiz:          var(--teal-700);   /* fundo quiz */
  --bg-light:         #f2fafb;           /* seções claras */
  --base:             #ffffff;
  --text-dark:        #0d2b30;           /* titulos dark */
  --text-body:        #4a6a6e;           /* corpo de texto */
  --text-muted:       #9ab8bc;
  --text-on-dark:     rgba(255,255,255,0.90);
  --text-on-dark-sub: rgba(255,255,255,0.70);

  /* ─── Tipografia ─── */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* ─── Layout ─── */
  --section-py:     90px;
  --section-py-md:  60px;
  --section-py-sm:  40px;
  --container:      1200px;
  --container-pad:  24px;
  --radius:         10px;
  --radius-lg:      20px;
  --radius-xl:      32px;

  /* ─── Sombras ─── */
  --shadow-sm:  0 2px 8px rgba(40,130,140,0.10);
  --shadow-md:  0 6px 24px rgba(40,130,140,0.16);
  --shadow-lg:  0 16px 48px rgba(40,130,140,0.22);

  /* ─── Transição ─── */
  --transition: all 0.3s ease;
}

/* =============================================================================
   3. Reset
   ============================================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden; /* iOS Safari: body sozinho não basta — html precisa ter também */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--base);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* =============================================================================
   4. Tipografia
   ============================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(40px, 6vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; }

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

/* =============================================================================
   5. Layout
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* =============================================================================
   6. Animações Fade-In (IntersectionObserver)
   ============================================================================= */

.fade-in, .fade-left, .fade-right, .fade-up, .fade-down {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in    { transform: none; }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-up    { transform: translateY(40px); }
.fade-down  { transform: translateY(-40px); }

.fade-in.visible,  .fade-left.visible,
.fade-right.visible, .fade-up.visible, .fade-down.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }
.fade-delay-4 { transition-delay: 0.4s; }
.fade-delay-5 { transition-delay: 0.5s; }

/* =============================================================================
   7. Botões
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.8em 2.4em;
  border-radius: 50px;
  border: 2.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Primário — turquesa sólido (contexto normal) */
.btn--primary {
  background-color: var(--primary);
  color: var(--base);
  border-color: var(--primary);
  text-transform: none;
}

/* No hero, o botão precisa de mais contraste */
#hero .btn--primary {
  background-color: #fff;
  color: var(--teal-700);
  border-color: #fff;
}
#hero .btn--primary:hover {
  background-color: var(--teal-900);
  border-color: var(--teal-900);
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--base);
}

/* Outline branco (sobre fundo escuro) */
.btn--outline-white {
  background-color: transparent;
  color: var(--base);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background-color: var(--base);
  color: var(--teal-700);
  border-color: var(--base);
}

/* Outline turquesa (sobre fundo claro) */
.btn--outline-teal {
  background-color: transparent;
  color: var(--teal-600);
  border-color: var(--teal-600);
}
.btn--outline-teal:hover {
  background-color: var(--teal-600);
  color: var(--base);
}

/* Tamanhos */
.btn--lg  { font-size: 20px; padding: 0.9em 2.8em; }
.btn--sm  { font-size: 14px; padding: 0.6em 1.6em; }

/* Compatibilidade com classes legadas do quiz */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 0.8em 2.4em;
  border-radius: 50px;
  background-color: var(--primary);
  color: var(--base);
  border: 2.5px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =============================================================================
   8. Hero (#hero) — bg.png + gota full-bleed + badges de sintoma
   ============================================================================= */

#hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100vh;
  min-height: 100svh; /* iOS Safari: exclui a barra do browser */
  background: url('../assets/img/hero-bg.png') center / cover no-repeat;
  overflow: hidden;
}

/* ─── Keyframes ─── */
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroDropIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes badge-pop {
  0%   { opacity: 0; transform: scale(0.50); }
  65%  { opacity: 1; transform: scale(1.10); }
  100% { opacity: 1; transform: scale(1.00); }
}
@keyframes badge-float-a { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-10px)} }
@keyframes badge-float-b { 0%,100%{transform:translateY(-5px)} 50%{transform:translateY(7px)}  }
@keyframes badge-float-c { 0%,100%{transform:translateY(-3px)} 50%{transform:translateY(9px)}  }
@keyframes badge-float-d { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-8px)} }
@keyframes badge-float-e { 0%,100%{transform:translateY(-6px)} 50%{transform:translateY(5px)}  }

.hero--anim-left { animation: heroSlideLeft 1.0s cubic-bezier(0.22,1,0.36,1) both; }

/*
  Visual: cobre todo o #hero (inset:0).
  A gota usa object-fit:contain para preencher o canvas sem distorcer —
  quando a versão transparente chegar, encaixará perfeitamente.
*/
.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
  Drop-wrap: cada contexto de orientação/tamanho recebe o aspect-ratio correto.
  Assim as badges (posicionadas em % do drop-wrap) ficam ancoradas ao espaço
  real da imagem — sem distorção, sem letterboxing.
*/
.hero__drop-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Landscape ≥769px (desktop + tablet): um único fator de escala (--hero-scale),
   derivado da referência 1920×1080 (base fiel ao KV), pegando o lado mais
   restritivo entre largura e altura. Gota, badges e Julho Turquesa usam todos
   essa mesma variável — nunca mais saem de proporção entre si, em nenhum
   aspect ratio (antes a gota escalava por min(vw,svh) e os badges só por svh;
   essas duas fórmulas só coincidiam em telas exatamente 16:9). */
@media (orientation: landscape) and (min-width: 769px) {
  #hero {
    --hero-scale: min(calc(100vw / 1920px), calc(100svh / 1080px));
  }
  .hero__drop-wrap {
    width: calc(var(--hero-scale) * 1920px);
    height: calc(var(--hero-scale) * 1080px);
  }
}

/*
  Portrait mobile (≥376px): aspect-ratio da hero-gota-mobile.png (700×1080).
  width: auto + max-width: 100% — quando max-height entra em ação, o browser
  deriva a largura a partir da altura via aspect-ratio (sem distorção).
  Com width: 100%, max-height travaria a altura mas manteria a largura em 100%,
  violando o aspect-ratio e esticando a imagem.
  max-height: 80svh → ~10% menor que 90svh; quando 80svh < 606px (altura natural
  de 393px com AR 700/1080), a gota encolhe proporcionalmente em ambas dimensões.
  Inclui iPhone SE (375px) — o min() formula é seguro para telas menores.
*/
@media (max-width: 768px) and (orientation: portrait) {
  .hero__drop-wrap {
    aspect-ratio: 700 / 1080;
    width: min(100%, calc(74svh * 700 / 1080));
    height: auto;
  }
}

.hero__drop {
  position: absolute;
  top: 10.4%;
  left: 32.8%;
  width: 34.3%;
  height: 79.7%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0,50,70,0.25));
  animation: heroDropIn 1.0s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

/* Badges: posições em % do canvas do hero */
.hero__badge {
  position: absolute;
  opacity: 0;
}
.hero__badge img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,40,60,0.22));
}

/* Fallback (svh-only): cobre qualquer combinação de orientação/largura não
   coberta pelas regras dedicadas abaixo (landscape ≥769px tem override
   próprio logo adiante; portrait ≤1024px tem overrides dedicados mais
   abaixo no arquivo). clamp() garante legibilidade mínima e teto máximo. */
.hero__badge--vermelhidao { width: clamp(130px, 29svh, 490px); }
.hero__badge--ardor       { width: clamp(105px, 21.5svh, 360px); }
.hero__badge--coceira     { width: clamp(90px,  18.2svh, 305px); }
.hero__badge--areia       { width: clamp(90px,  18.2svh, 305px); }
.hero__badge--secura      { width: clamp(90px,  18.2svh, 305px); }

/* Landscape ≥769px: usa o mesmo --hero-scale da gota (ver .hero__drop-wrap)
   em vez de svh isolado — garante que badge e gota nunca saem de proporção
   entre si, em qualquer aspect ratio. Bases medidas em 1920×1080. */
@media (orientation: landscape) and (min-width: 769px) {
  .hero__badge--vermelhidao { width: clamp(130px, calc(var(--hero-scale) * 313px), 490px); }
  .hero__badge--ardor       { width: clamp(105px, calc(var(--hero-scale) * 232px), 360px); }
  .hero__badge--coceira     { width: clamp(90px,  calc(var(--hero-scale) * 197px), 305px); }
  .hero__badge--areia       { width: clamp(90px,  calc(var(--hero-scale) * 197px), 305px); }
  .hero__badge--secura      { width: clamp(90px,  calc(var(--hero-scale) * 197px), 305px); }
}

.hero__badge--ardor {
  top: 13%;
  left: 36%;
  animation: badge-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.9s forwards;
}

.hero__badge--secura {
  bottom: 24%;
  left: 27%;
  animation: badge-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 1.1s forwards;
}

.hero__badge--vermelhidao {
  top: 36%;
  left: 58%;
  animation: badge-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 1.3s forwards;
}

.hero__badge--coceira {
  top: 25%;
  left: 68%;
  animation: badge-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 1.0s forwards;
}

.hero__badge--areia {
  bottom: 20%;
  left: 66%;
  animation: badge-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) 1.2s forwards;
}

/*
  Layout: ocupa toda a altura do hero.
  Texto alinhado ao topo-esquerda.
  Julho Turquesa e Brand são absolutos no rodapé do layout.
*/
.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 80px 140px;
}

/* Landscape ≥769px: texto fica na esquerda (fiel ao KV) em vez de
   centralizar com o .container — evita invadir a gota/badges.
   Antes isso só valia ≥1920px; abaixo disso o .container ainda centralizava
   o hero__layout, empurrando o texto pro centro e fazendo o right:% do
   Julho Turquesa calcular em cima da largura errada (1200px em vez da
   tela toda) — causa raiz da colisão título/botão/Julho×Coceira em telas
   menores como 1366×768. */
@media (orientation: landscape) and (min-width: 769px) {
  .hero__layout { max-width: none; }
}

.hero__content {
  color: var(--base);
  width: 44%;
  /* Fluido: encolhe a coluna de texto em telas menores pra manter
     distância da gota (que também encolhe, mas em outra proporção).
     ≥1751px de largura: trava em 500px (igual a antes). */
  max-width: clamp(280px, 28.5vw, 500px);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(47px, 5.87vw, 77px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--base);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* CTA mobile: oculto em desktop — só aparece via media query em portrait ≤1024px */
.hero__cta--mobile {
  display: none !important;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
}

/* CTA desktop: sempre visível no desktop */
.hero__cta--desktop { display: flex; }

/* Logos do rodapé do hero: Julho Turquesa (esq.) + Genom/União Química (dir.).
   align-items: center alinha os dois logos na mesma linha horizontal,
   independente da altura de cada imagem. */
.hero__logos {
  position: absolute;
  bottom: clamp(40px, 9svh, 100px);
  left: var(--container-pad);
  right: var(--container-pad);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__julho img {
  width: clamp(143px, 25.74svh, 435px);
  height: auto;
  display: block;
}

/* Landscape ≥769px: mesmo --hero-scale da gota/badges (ver .hero__drop-wrap)
   — base medida em 1920×1080 (278px). */
@media (orientation: landscape) and (min-width: 769px) {
  .hero__julho img { width: clamp(143px, calc(var(--hero-scale) * 278px), 435px); }
}

.hero__brand img {
  filter: brightness(0) invert(1);
  opacity: 0.90;
  width: 130px;
  height: auto;
  display: block;
}

/* CTA desktop: fluido — em telas largas trava em 21px (igual a antes);
   em telas mais estreitas (perto de 1024px, fronteira do iPad landscape)
   encolhe pra não estourar a largura da coluna de texto e colidir com a
   gota (a largura do botão não respeitava o max-width da coluna porque
   white-space:nowrap não deixa ele quebrar linha).
   Escopado só ao CTA desktop — não toca no .btn--lg global (compartilhado
   com o CTA mobile). */
.hero__cta--desktop .btn--lg {
  font-size: clamp(16px, 1.8vw, 21px);
  padding: 0.82em 2.55em;
}

/* Botão branco sobre fundo turquesa */
#hero .btn--primary {
  background-color: #fff;
  color: var(--teal-700);
  border-color: #fff;
}
#hero .btn--primary:hover {
  background-color: var(--teal-900);
  border-color: var(--teal-900);
  color: #fff;
}

/* ─── Wave divider na base ─── */
.hero__shape-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.hero__shape-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
.hero__shape-divider .shape-fill { fill: var(--base); }

/* ─── Seções pós-hero elevadas para o efeito cobertor ─── */
#sintomas, #info, #quiz, #produtos, #aviso-legal, #apoio, #footer {
  position: relative;
  z-index: 1;
}

/* =============================================================================
   9. Sintomas (#sintomas)
   ============================================================================= */

#sintomas {
  padding-block: 64px;
  background: var(--base);
  border-bottom: 1px solid var(--teal-100);
}

.sintomas__intro {
  text-align: center;
  margin-bottom: 48px;
}

.sintomas__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 12px;
}

.sintomas__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
}

.sintomas__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Cada badge é a imagem do PSD — balão turquesa com ícone + label */
.sintoma-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: var(--transition);
  cursor: default;
}

.sintoma-badge:hover { transform: translateY(-6px); }

.sintoma-badge img {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(40,130,140,0.25));
  transition: var(--transition);
}

.sintoma-badge:hover img {
  filter: drop-shadow(0 12px 24px rgba(40,130,140,0.40));
}

/* =============================================================================
   10. Info (#info)
   ============================================================================= */

#info {
  padding-block: 60px;
  background-color: var(--base);
}

.info-header {
  text-align: center;
  margin-bottom: 40px;
}

.info-header i {
  font-size: 22px;
  color: var(--teal-400);
  margin-bottom: 6px;
  display: block;
  animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.info-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Coluna do contador: centraliza verticalmente o conteúdo */
.info-col:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Contador ─── */
.counter-block {
  text-align: center;
  padding: 20px 0;
}

.counter {
  font-family: var(--font-heading);
  font-size: clamp(80px, 11vw, 130px);
  font-weight: 800;
  line-height: 0.9;
  color: var(--teal-600);
  letter-spacing: -3px;
  display: block;
}

.counter-label {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--teal-600);
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
  margin-bottom: 16px;
}

.counter-block p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── Vídeo thumbnail ─── */
.video-thumb {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2/3;
  height: auto;
  text-decoration: none;
  transition: var(--transition);
}

.video-thumb__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  position: absolute;
  inset: 0;
}

/* ─── Coluna texto ─── */
.info-col:last-child {
  display: flex;
  flex-direction: column;
}

/* Botão questionário na seção info — balão SVG */
.info-quiz-link {
  --quiz-btn-bg: rgb(70, 190, 210);
  --quiz-btn-border: rgba(255, 255, 255, 0.72);

  position: relative;
  display: inline-block;

  width: min(100%, 360px);
  aspect-ratio: 620 / 155;

  padding: 0;
  margin-top: auto;

  background: transparent;
  border: 0;
  border-radius: 0;

  color: #ffffff;
  font-family: var(--font-heading);
  text-decoration: none;
  white-space: nowrap;

  transition: var(--transition);
  overflow: visible;
}

.info-quiz-link__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  z-index: 1;
}

.info-quiz-link__shape path {
    fill: var(--quiz-btn-bg);
  stroke: var(--quiz-btn-border);
  stroke-width: 10;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.info-quiz-link span {
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 76%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: none;

  z-index: 2;
  pointer-events: none;
}

.info-quiz-link:hover {
  transform: translateY(-3px);
  filter: brightness(0.96);
  box-shadow: none;
}

.info-quiz-link:focus-visible {
  outline: 3px solid var(--teal-200);
  outline-offset: 6px;
}

@media (max-width: 480px) {
  .info-quiz-link {
    width: 100%;
    max-width: 340px;
  }

  .info-quiz-link span {
    font-size: clamp(18px, 5.6vw, 24px);
  }
}

.info-col p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 14px;
}

.info-col h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-700);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.info-col .btn-primary {
  margin-top: auto;
}

/* =============================================================================
   11. Quiz (#quiz)
   ============================================================================= */

#quiz {
  position: relative;
  min-height: 100vh;
  padding-block: var(--section-py);
  background: url('../assets/img/bg-questionario.png') center / cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#quiz > .container {
  width: 100%;
}

.quiz-wrapper {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin-inline: auto;
}

/* Container branco permanente — redimensiona com o conteúdo */
.quiz__stage {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  padding: 64px 60px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#quiz h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-300);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#quiz h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--base);
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
  line-height: 1.05;
}

/* ─── Alerta ─── */
.quiz__alerta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.30);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 20px;
}

.quiz__alerta i {
  font-size: 16px;
  color: #FFD84D;
}

/* ─── Pergunta card — dentro do quiz__stage, sem shadow própria ─── */
.row > div[id^="p"] {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: var(--text-dark);
}

.row > div[id^="p"] span {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.row > div[id^="p"] span strong {
  font-weight: 700;
  color: var(--teal-700);
}

/* ─── Quiz options ─── */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* Anula os <br><br> do HTML legado do quiz */
.quiz-options br { display: none; }

.quiz-options--two {
  flex-direction: row;
  gap: 10px;
}

/* ─── st-btn ─── */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.2;
  padding: 18px 24px;
  border-radius: 10px;
  border: 2px solid var(--teal-400);
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--teal-600);
}

.st-btn:hover,
.st-btn.st-style2.st-color1:hover,
.st-btn.st-style2.st-color1.selected {
  background: var(--teal-400);
  border-color: var(--teal-400);
  color: #fff;
  transform: none;
  box-shadow: var(--shadow-sm);
}

.st-btn.st-style2.st-color1 {
  background: #fff;
  border-color: var(--teal-400);
  color: var(--teal-600);
}

.st-btn.st-style1.st-color1 {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  width: 100%;
  margin-top: 8px;
  font-weight: 700;
  padding: 18px 24px;
}

.st-btn.st-style1.st-color1:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ─── Formulário de lead ─── */
.st-appointment-form h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--base);
  text-transform: uppercase;
  text-align: center;
}

.st-form-field.st-style1 input,
.st-form-field.st-style1 select,
.st-form-field.st-style1 textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  color: var(--base);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
  margin-bottom: 14px;
  -webkit-appearance: none;
  appearance: none;
}

.st-form-field.st-style1 input::placeholder { color: rgba(255,255,255,0.35); }

.st-form-field.st-style1 input:focus,
.st-form-field.st-style1 select:focus {
  outline: none;
  border-color: var(--teal-400);
  background: rgba(70,190,210,0.08);
}

.col-lg-6 { width: 50%; display: inline-block; vertical-align: top; padding: 0 6px; box-sizing: border-box; }
.col-lg-12 { width: 100%; padding: 0 6px; box-sizing: border-box; }

/* Termo + Checkbox */
.col-lg-12 > p {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  padding: 12px !important;
  height: 130px;
}

.col-lg-12 input[type="checkbox"] {
  accent-color: var(--teal-400);
  margin-right: 8px;
}

.col-lg-12 label, .col-lg-12 > div:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.col-lg-12 a { color: var(--teal-300); text-decoration: underline; }

#res_ok h3 { color: var(--base) !important; }
#res_ok p  { color: rgba(255,255,255,0.75); }

/* ─── Lead form dentro do quiz__stage ─── */

/* Remove card aninhado do res_form — o stage já é o container */
.quiz__stage #res_form {
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Título — #quiz h2 tem especificidade de ID, precisa de !important */
#quiz .quiz__stage .st-appointment-form-title {
  color: var(--text-dark) !important;
  margin-bottom: 28px;
}

/* 2 colunas — flex elimina o problema de whitespace do inline-block */
.quiz__stage #appointment-form-2 > .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.quiz__stage .col-lg-6 {
  width: 50% !important;
  display: block !important;
  padding: 0 4px !important;
  box-sizing: border-box;
}
.quiz__stage .col-lg-12 {
  width: 100% !important;
  display: block !important;
  padding: 0 4px !important;
  box-sizing: border-box;
}

/* Inputs/selects — fundo branco, borda teal, texto escuro */
.quiz__stage .st-form-field.st-style1 input,
.quiz__stage .st-form-field.st-style1 select,
.quiz__stage .st-form-field.st-style1 textarea {
  background: var(--base);
  border: 1.5px solid var(--teal-200);
  border-radius: 10px;
  color: var(--text-dark);
  height: 52px;
}

.quiz__stage .st-form-field.st-style1 input::placeholder {
  color: var(--text-muted);
}

.quiz__stage .st-form-field.st-style1 input:focus,
.quiz__stage .st-form-field.st-style1 select:focus {
  border-color: var(--teal-400);
  background: var(--teal-100);
}

/* Seta custom nos selects (appearance:none remove a nativa) */
.quiz__stage .st-form-field.st-style1 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='none' stroke='%2346bed2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* Termo de uso — legível no fundo branco */
.quiz__stage .col-lg-12 > p {
  background: var(--bg-light) !important;
  border: 1px solid var(--teal-100) !important;
  border-radius: 10px;
  color: var(--text-body) !important;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px !important;
  height: 130px;
  overflow-y: scroll;
}

/* Checkbox + texto de aceite */
.quiz__stage .col-lg-12 input[type="checkbox"] {
  accent-color: var(--teal-400);
  margin-right: 8px;
}

.quiz__stage .col-lg-12 > div:last-child,
.quiz__stage .col-lg-12 > p ~ * {
  color: var(--text-body) !important;
  font-size: 14px;
}

.quiz__stage .col-lg-12 a {
  color: var(--teal-600) !important;
  text-decoration: underline;
}

/* ─── Tela de confirmação pós-envio ─── */
@keyframes check-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

.quiz__thankyou {
  text-align: center;
  padding: 24px 0 8px;
}

.quiz__thankyou-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(70,190,210,0.35);
  animation: check-pop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}

.quiz__thankyou-icon i {
  font-size: 38px;
  color: #fff;
}

.quiz__thankyou-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px) !important;
  font-weight: 800;
  color: var(--teal-700) !important;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.quiz__thankyou-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark) !important;
  margin-bottom: 12px;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.quiz__thankyou-msg {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark) !important;
  line-height: 1.75;
  max-width: 460px;
  margin-inline: auto;
}

.quiz__thankyou-msg strong { color: var(--teal-600); }

/* =============================================================================
   12. Produtos (#produtos)
   ============================================================================= */

#produtos {
  padding-block: var(--section-py);
  background: url('../assets/img/bg-produtos.png') center / cover no-repeat;
  position: relative;
}

#produtos h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--base);
  text-align: center;
  text-transform: uppercase;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Card usa o frame PNG da agência como background */
.produto-card {
  background: url('../assets/img/frame-produto-cropped.png') no-repeat center / 100% 100%;
  border-radius: 20px;
  border: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,70,90,0.18);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,70,90,0.28);
}

.produto-card > a:first-child {
  display: block;
  background: transparent;
  padding: 28px 20px 12px;
}

.produto-card > a:first-child img {
  max-height: 150px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 20px rgba(0,40,60,0.22));
}

.produto-card:hover > a:first-child img { transform: scale(1.06) translateY(-4px); }

.produto-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--base);
  text-transform: uppercase;
  padding: 10px 16px 4px;
}

.produto-card h6 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 16px 14px;
  flex: 1;
}

/* Botão "Saiba mais" — imagem PNG */
.btn-saiba-mais {
  display: block;
  margin: 0 auto 20px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.btn-saiba-mais img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin-inline: auto;
}
.btn-saiba-mais:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}


/* CTA da seção — imagem PNG */
.produtos-cta { text-align: center; }
.produtos-cta__link {
  display: inline-block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.produtos-cta__link img {
  height: auto;
  max-width: 340px;
  display: block;
  margin-inline: auto;
}
.produtos-cta__link:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

/* =============================================================================
   13. Aviso Legal (#aviso-legal)
   ============================================================================= */

#aviso-legal {
  padding-block: 40px;
  background: var(--teal-100);
  text-align: center;
  border-top: 1px solid rgba(70,190,210,0.2);
  border-bottom: 1px solid rgba(70,190,210,0.2);
}

#aviso-legal h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  line-height: 1.7;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* =============================================================================
   14. Apoio (#apoio)
   ============================================================================= */

#apoio {
  padding-block: 60px;
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
}

#apoio img {
  max-width: 340px;
  margin-inline: auto;
  opacity: 0.85;
  transition: var(--transition);
}

#apoio img:hover { opacity: 1; }

/* =============================================================================
   15. Footer
   ============================================================================= */

#footer {
  background: var(--teal-900);
  padding-block: 38px;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 20px;
  padding-inline: var(--container-pad);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-uq-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-sac-img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.60;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--teal-300); }

/* =============================================================================
   16. Contador animado (JS)
   ============================================================================= */

.counter { transition: color 0.3s ease; }

/* =============================================================================
   17. Responsive — Desktop médio (max 1280px)
   ============================================================================= */

/* Seções 17–18: breakpoints de badge removidos — clamp(svh) escala contínua */

/* =============================================================================
   18b. Responsive — iPad portrait (min 769px, max 1024px, portrait)
   ============================================================================= */

/*
  hero-gota-mobile.png (700×1080) em iPad Pro portrait (1024×1366):
  → limitante: altura → escala 1.265
  → gota renderiza 885×1366px, pillar-box 69.5px cada lado
  → gota shape: x 10.5%–89.5%  /  y 10.4%–90.1%
*/
@media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  :root { --section-py: var(--section-py-md); }

  /* Gota: mesma fórmula min() do mobile, 10% menor que o iPhone 14 (74svh → 67svh) */
  .hero__drop-wrap {
    aspect-ratio: 700 / 1080;
    width: min(100%, calc(67svh * 700 / 1080));
    height: auto;
  }

  /* Gota-4 no iPad portrait: mesma posição que a gota ocupava na mobile (700×1080) */
  .hero__drop {
    top: 10.4%;
    left: 1.6%;
    width: 94.1%;
    height: 79.7%;
  }

  .hero__layout {
    align-items: flex-start;
    padding-block: 50px 200px;
  }
  .hero__content { width: 60%; max-width: 520px; }

  /* CTA desktop: oculto no iPad portrait */
  .hero__cta--desktop { display: none; }

  /* CTA mobile: bottom-based para não sobrepar logos */
  .hero__cta--mobile {
    display: flex !important;
    top: auto;
    bottom: 170px;
    width: auto;
  }
  .hero__cta--mobile .btn { width: auto; }

  /* Logos */
  .hero__logos     { bottom: 60px; }
  .hero__julho img { width: 200px; }
  .hero__brand img { width: 130px; }

  /* Badge sizes — iPad Air portrait */
  .hero__badge--vermelhidao { width: 240px; }
  .hero__badge--ardor       { width: 230px; }
  .hero__badge--coceira     { width: 220px; }
  .hero__badge--areia       { width: 220px; }
  .hero__badge--secura      { width: 220px; }

  /* Posições — referência: gota 456×703px centrada em 820px visual.
     Negativos = badge extravasa o edge da gota para o espaço turquesa. */
  .hero__badge--coceira     { top: 8%;  left: 52%;  bottom: auto; }
  .hero__badge--ardor       { top: 19%;  left: -12%; bottom: auto; }
  .hero__badge--vermelhidao { top: 34%;  left: auto; right: -20%; bottom: auto; }
  .hero__badge--secura      { top: 55%;  left: -12%; bottom: auto; }
  .hero__badge--areia       { top: 63%;  left: 55%;  bottom: auto; }

  /* Info — vídeo a 70% no iPad portrait.
     O botão (margin-top:auto na col flex) alinha ao fundo da coluna,
     que pelo grid stretch tem a mesma altura que a coluna do vídeo. */
  .video-thumb { width: 70%; }
}

/* =============================================================================
   18c. Responsive — Tablet (regras gerais, sem orientation)
   ============================================================================= */

@media (max-width: 1024px) {
  :root { --section-py: var(--section-py-md); }

  /* ─── Info ─── */
  #info { padding-block: 80px; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .info-grid .info-col:first-child { grid-column: span 2; }
  .info-col:last-child { display: flex; flex-direction: column; }

  /* ─── Quiz ─── */
  .quiz__stage  { padding: 48px 44px; }
  .quiz-wrapper { max-width: 860px; }

  /* ─── Produtos ─── */
  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* ─── Misc ─── */
  .sintomas__grid { gap: 16px; }
  .sintoma-badge img { width: 110px; }
}

/* =============================================================================
   19. Responsive — Mobile (max 768px)
   ============================================================================= */

@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
    --container-pad: 16px;
  }

  /* ─── Hero ─── */
  /*
    Flex-column: content no topo, CTA empurrado para baixo com margin-top:auto.
    Padding bottom garante espaço para CTA + logos.
  */
  .hero__layout {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 40px 200px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    width: 85%;
    max-width: 100%;
    flex: 1;
  }
  .hero__subtitle { max-width: 100%; font-size: 16px; }
  .hero__shape-divider svg { height: 50px; }

  /* overflow: hidden no visual (não no #hero sticky) — clippa drop-shadows de
     badges que extravasam a borda direita no iOS Safari sem bug do sticky */
  .hero__visual { overflow: hidden; }

  /* Gota-4 no mobile: posição equivalente à hero-gota-mobile.png (700×1080) */
  .hero__drop {
    filter: none;
    top: 10.4%;
    left: 1.6%;
    width: 94.1%;
    height: 79.7%;
  }

  /* CTA desktop: oculto no iPhone */
  .hero__cta--desktop { display: none; }

  /* CTA mobile: posicionado de baixo pra cima (previsível em qualquer altura de tela) */
  .hero__cta--mobile {
    display: flex !important;
    top: auto;
    bottom: 140px;       /* +30px vs anterior */
    width: 80%;
  }
  .hero__cta--mobile .btn { width: 100%; text-align: center; }

  /* CTA: vidro fosco sobre fundo turquesa no mobile */
  #hero .btn--primary {
    background: rgba(255, 255, 255, 0.58);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.80);
  }

  /* Logos: mesma distância do fundo, lados opostos */
  .hero__logos         { bottom: 54px; }   /* +30px vs anterior */
  .hero__julho img     { width: 155px; }
  .hero__brand img     { width: 120px; }

  /* Badges — % do drop-wrap (~284px × 438px no 14 Pro com 74svh).
     Esquerda: Ardor e Secura flush-left (left:0).
     Direita: Coceira alto, Vermelhidão meio, Areia baixo — separação vertical
     suficiente para não sumir um atrás do outro. */
  .hero__badge--vermelhidao { width: 148px; }
  .hero__badge--ardor       { width: 138px; }
  .hero__badge--coceira     { width: 138px; }
  .hero__badge--areia       { width: 148px; }
  .hero__badge--secura      { width: 138px; }

  .hero__badge--ardor       { top: 29%;  left: -8%;  bottom: auto; }
  .hero__badge--coceira     { top: 15%;  left: 55%;  bottom: auto; }
  .hero__badge--vermelhidao { top: 35%;  left: auto; right: -14%; bottom: auto; }
  .hero__badge--secura      { top: 58%;  left: -3%;  bottom: auto; }
  .hero__badge--areia       { top: 58%;  left: 64%;  bottom: auto; }

  /* ─── Info ─── */
  #info           { padding-block: 40px; }
  .info-header    { margin-bottom: 32px; }
  .info-grid      { grid-template-columns: 1fr; row-gap: 6px; }
  .info-grid .info-col:first-child { grid-column: span 1; }
  .info-col       { min-width: 0; width: 100%; }
  .info-col:last-child { display: flex; flex-direction: column; align-items: center; }
  .info-col:last-child p, .info-col:last-child h4 { width: 100%; }
  .info-col .btn-primary { display: block; text-align: center; }
  .info-quiz-link { margin-top: 20px; margin-inline: auto; }
  .counter-block  { width: 100%; padding: 4px 0; }
  .counter-block p { max-width: 100%; margin-top: 6px; }

  /* Vídeo: portrait, altura dobrada */
  .video-thumb    { width: 100%; height: 440px !important; aspect-ratio: unset; border-radius: 16px; }
  .video-thumb__player { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

  /* ─── Quiz ─── */
  #quiz           { padding-block: 60px 80px; }
  #quiz h2        { font-size: clamp(26px, 7vw, 40px); margin-bottom: 32px; }
  .quiz-wrapper   { max-width: 100%; }
  .quiz__stage    { padding: 32px 28px; min-height: unset; border-radius: 20px; }

  /* Form 2→1 coluna dentro do stage */
  .quiz__stage .col-lg-6 {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
  }
  .quiz__stage #appointment-form-2 > .row { flex-direction: column; }

  /* Buttons do quiz menores */
  .st-btn { font-size: 18px; padding: 15px 20px; }

  /* ─── Produtos ─── */
  #produtos h2  { font-size: clamp(20px, 5vw, 30px); margin-bottom: 32px; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .produto-card  { min-width: 0; }
  .produto-card h3 { font-size: 20px; }

  /* ─── Misc ─── */
  .sintomas__grid { gap: 12px; }
  .sintoma-badge img { width: 90px; }

  /* col-lg global (fora do stage, e.g. outros forms) */
  .col-lg-6 { width: 100% !important; display: block !important; }

  /* ─── Footer ─── */
  #footer .footer-links { flex-direction: column; gap: 14px; }
}

/* =============================================================================
   20. Responsive — Mobile pequeno (max 480px)
   ============================================================================= */

@media (max-width: 480px) {
  /* ─── Hero ─── */
  .hero__layout   { padding-block: 48px 140px; }
  .hero__content  { width: 95%; }
  .hero__title    { font-size: clamp(36px, 10vw, 52px); }
  .hero__subtitle { font-size: 15px; }
  .hero__julho img { width: 110px; }

  .hero__cta--mobile { bottom: 135px; width: 88%; }  /* +30px */
  .hero__cta--mobile .btn { text-align: center; }
  .hero__logos    { bottom: 54px; }                  /* +30px */
  .hero__julho img { width: 120px; }
  .hero__brand img { width: 100px; }

  /* ─── Info ─── */
  #info           { padding-block: 32px; }
  .info-header    { margin-bottom: 24px; }
  .info-grid      { gap: 8px; }
  .counter        { font-size: clamp(64px, 18vw, 100px); }
  .counter-label  { font-size: 22px; }

  /* ─── Quiz ─── */
  .quiz__stage    { padding: 24px 18px; border-radius: 16px; }
  #quiz h2        { font-size: clamp(24px, 8vw, 36px); }
  #quiz h3        { font-size: 20px; }
  .st-btn         { font-size: 18px; padding: 13px 16px; border-radius: 8px; }

  /* ─── Produtos ─── */
  .produtos-grid  { grid-template-columns: 1fr; }
  .produto-card h3 { font-size: 18px; }

  /* ─── Aviso Legal ─── */
  #aviso-legal h3 { font-size: 12px; }

  /* ─── Misc ─── */
  .sintomas__grid { gap: 10px; }
  .sintoma-badge img { width: 76px; }
}

/* =============================================================================
   21. Responsive — iPhone 16 Pro / 15 / 14 (max 430px portrait)
   ============================================================================= */

@media (max-width: 430px) {
  /* Título e subtítulo: +5px, sem quebra forçada de linha */
  .hero__title    { font-size: 33px; line-height: 0.95; }
  .hero__subtitle { font-size: 19px; margin-bottom: 20px; }
  .hero__title br,
  .hero__subtitle br { display: none; }

  /* Badges ≤430px: tamanho reduzido, posições espelham o bloco 768px. */
  .hero__badge--ardor       { width: 120px; top: 29%; left: -8%;   }
  .hero__badge--coceira     { width: 120px; top: 15%; left: 55%;   }
  .hero__badge--vermelhidao { width: 130px; top: 35%; right: -14%; }
  .hero__badge--secura      { width: 120px; top: 58%; left: -3%;   }
  .hero__badge--areia       { width: 120px; top: 58%; left: 64%;   }

  /* CTA desce 15px */
  .hero__cta--mobile  { bottom: 110px; width: 88%; }

  /* Logos descem 15px */
  .hero__logos        { bottom: 39px; }
  .hero__julho img    { width: 100px; }
  .hero__brand img    { width: 90px; }
}

/* =============================================================================
   22. Responsive — iPhone SE / muito pequeno (max 375px)
   ============================================================================= */

@media (max-width: 375px) {
  /* Hero: comprime o espaço vertical do texto para a gota respirar mais */
  .hero__layout   { padding-block: 18px 140px; }
  .hero__title    { font-size: 28px; }
  .hero__subtitle { font-size: 14px; line-height: 1.35; }
  .hero__content  { width: 100%; }
  .quiz__stage    { padding: 20px 14px; }
  .produtos-grid  { gap: 10px; }
}

/* iPad Mini portrait (600–768px × ~1024px) — CTA sobe ~5% do viewport */
@media (min-width: 600px) and (max-width: 768px) and (orientation: portrait) {
  .hero__cta--mobile { bottom: 190px; }
}

/* SE portrait: gota sobe para Secura/Areia ficarem visíveis; badges em zigzag */
@media (max-width: 375px) and (orientation: portrait) {
  .hero__drop-wrap {
    width: min(100%, calc(66svh * 700 / 1080));
    transform: translateY(-10%);
  }

  /* Badges menores e redistribuídos: alternância esq/dir desce a tela */
  .hero__badge--coceira     { width: 106px; top: 10%; left: 54%; }
  .hero__badge--ardor       { width: 106px; top: 28%; left: -13%; }
  .hero__badge--vermelhidao { width: 112px; top: 32%; right: -20%; }
  .hero__badge--secura      { width: 106px; top: 56%; left: -3%; }
  .hero__badge--areia       { width: 106px; top: 56%; left: 60%; }
}
