/* =========================================================
   DOMINANDO IA — Design System
   ========================================================= */
:root {
  /* Cor principal + variações */
  --lime:        #cadb11;
  --lime-bright: #e3f53a;
  --lime-deep:   #a8b80a;
  --lime-glow:   rgba(202, 219, 17, 0.45);

  /* Teal escuro (base e contraste) */
  --teal-900:    #04181c;
  --teal-800:    #06262b;
  --teal-700:    #0a343c;
  --teal-600:    #0f4750;

  /* CTA verde */
  --green:       #18c964;
  --green-bright:#2af07c;
  --green-deep:  #0fa24f;
  --green-glow:  rgba(24, 201, 100, 0.55);

  /* Urgência (vermelho) */
  --red:         #e0142a;
  --red-deep:    #a90d1f;

  /* Neutros */
  --white:       #ffffff;
  --ink-soft:    rgba(255, 255, 255, 0.82);
  --ink-muted:   rgba(255, 255, 255, 0.62);

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.55);
  --glass-blur:   blur(14px);

  --urgency-h: 44px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 500;                 /* Medium = padrão para textos */
  background: var(--teal-900);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* =========================================================
   URGENCY BAR
   ========================================================= */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--urgency-h);
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  box-shadow: 0 6px 24px -6px rgba(224, 20, 42, 0.6);
  overflow: hidden;
}

/* brilho que cruza a barra para reforçar a urgência */
.urgency-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
              transparent 30%,
              rgba(255, 255, 255, 0.22) 50%,
              transparent 70%);
  transform: translateX(-120%);
  animation: barSweep 4.5s ease-in-out infinite;
}
@keyframes barSweep {
  0%, 60% { transform: translateX(-120%); }
  100%    { transform: translateX(120%); }
}

.urgency-bar__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.urgency-bar__warn {
  display: inline-flex;
  width: 19px;
  height: 19px;
  color: #ffd400;
  flex-shrink: 0;
  animation: warnPulse 1.2s ease-in-out infinite;
}
.urgency-bar__warn svg { width: 100%; height: 100%; display: block; }
@keyframes warnPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0.85; }
}

.urgency-bar__text {
  font-weight: 900;                 /* Black */
  font-size: clamp(0.72rem, 2.6vw, 0.92rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.urgency-bar__timer {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.urgency-bar__clock {
  font-weight: 900;
  font-size: clamp(0.74rem, 2.6vw, 0.95rem);
  letter-spacing: 0.06em;
  color: #04181c;
  background: #ffd400;
  padding: 2px 9px;
  border-radius: 7px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: calc(100svh - var(--urgency-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: var(--teal-900);
}

/* Wrapper do vídeo — full-bleed no desktop */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  display: block;
}
/* Fade de rodapé do vídeo (usado no mobile) */
.hero__media-fade {
  display: none;
}

/* Gradientes top/bottom */
.hero__grad {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.hero__grad--top {
  top: 0;
  height: 42%;
  background: linear-gradient(to bottom,
              var(--teal-900) 0%,
              rgba(4, 24, 28, 0.7) 30%,
              rgba(4, 24, 28, 0) 100%);
}
.hero__grad--bottom {
  bottom: 0;
  height: 68%;
  background: linear-gradient(to top,
              var(--teal-900) 6%,
              rgba(4, 24, 28, 0.92) 26%,
              rgba(4, 24, 28, 0.5) 55%,
              rgba(4, 24, 28, 0) 100%);
}

/* Grão sutil para profundidade */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Logo no topo */
.hero__logo {
  position: relative;
  z-index: 2;
  padding: 26px 24px 0;
  display: flex;
  justify-content: center;
  animation: fadeDown 0.9s 0.1s both ease-out;
}
.hero__logo img {
  width: clamp(234px, 60vw, 312px);
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

/* Conteúdo inferior */
.hero__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px clamp(34px, 6vh, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow — pílula de vidro */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.25s both ease-out;
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  animation: warnPulse 1.6s ease-in-out infinite;
}

/* Headline — Poppins Black */
.hero__headline {
  font-weight: 900;
  font-size: clamp(1.45rem, 7vw, 4.4rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 100%;
  overflow-wrap: break-word;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
  margin-bottom: 16px;
  animation: fadeUp 0.85s 0.35s both ease-out;
}
.hero__headline-accent {
  color: var(--lime);
  position: relative;
  text-shadow: 0 0 28px var(--lime-glow);
}

/* Sub headline — Poppins Medium */
.hero__subheadline {
  font-weight: 500;
  font-size: clamp(0.98rem, 3.6vw, 1.22rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 30ch;
  margin-bottom: 26px;
  animation: fadeUp 0.9s 0.45s both ease-out;
}
.hero__subheadline strong {
  font-weight: 800;
  color: var(--lime-bright);
}

/* =========================================================
   PRICE — card de vidro flutuante
   ========================================================= */
.price {
  position: relative;
  margin: 16px 0 26px;
  padding: 26px 32px 18px;
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  animation: fadeUp 0.9s 0.5s both ease-out;
}

/* Badge de desconto — pílula lime sobreposta ao topo */
.price__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -52%);
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime) 70%, var(--lime-deep));
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 20px -5px var(--lime-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Linhas "de ... por apenas" e "ou 12x ..." */
.price__from,
.price__installments {
  font-weight: 500;
  font-size: clamp(0.85rem, 3.2vw, 0.98rem);
  color: var(--ink-muted);
  margin: 0;
}
.price__installments strong { font-weight: 800; color: var(--ink-soft); }

/* Valor riscado com linha vermelha diagonal */
.price__strike {
  position: relative;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}
.price__strike::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 52%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(-11deg);
  box-shadow: 0 0 6px rgba(224, 20, 42, 0.5);
}

/* Preço atual — grande e Black */
.price__now {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  margin: 2px 0;
}
.price__currency {
  font-size: clamp(1.1rem, 4.4vw, 1.4rem);
  font-weight: 800;
  color: var(--lime);
  margin-top: 0.35em;
}
.price__value {
  font-size: clamp(2.9rem, 12vw, 3.8rem);
}

/* =========================================================
   CTA — verde, pulse + brilho de vidro
   ========================================================= */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(0.98rem, 3.8vw, 1.18rem);
  letter-spacing: 0.02em;
  color: #04181c;
  padding: 18px 30px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--green-bright), var(--green) 55%, var(--green-deep));
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 14px 38px -8px var(--green-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  cursor: pointer;
  animation:
    fadeUp 0.9s 0.55s both ease-out,
    ctaPulse 2.2s 1.4s ease-in-out infinite;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cta:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 20px 46px -8px var(--green-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.cta:active { transform: translateY(0) scale(0.99); }

.cta__label { position: relative; z-index: 2; white-space: nowrap; }

.cta__arrow {
  position: relative;
  z-index: 2;
  width: 20px; height: 20px;
  color: #04181c;
  transition: transform 0.2s ease;
}
.cta:hover .cta__arrow { transform: translateX(4px); }

/* brilho de vidro que passa da esquerda p/ direita a cada 3s */
.cta__shine {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(100deg,
              transparent 0%,
              rgba(255, 255, 255, 0.55) 50%,
              transparent 100%);
  transform: translateX(-180%) skewX(-18deg);
  animation: ctaShine 3s ease-in-out infinite;
}
@keyframes ctaShine {
  0%   { transform: translateX(-180%) skewX(-18deg); }
  45%  { transform: translateX(260%)  skewX(-18deg); }
  100% { transform: translateX(260%)  skewX(-18deg); }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 14px 38px -8px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.45);
  }
  50% {
    box-shadow: 0 14px 50px -4px var(--green-glow), 0 0 0 6px rgba(24,201,100,0.12),
                inset 0 1px 0 rgba(255,255,255,0.55);
  }
}

/* Trust line */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-muted);
  animation: fadeUp 1s 0.65s both ease-out;
}
.hero__trust-stars { color: var(--lime); letter-spacing: 0.1em; }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::after, *::before { animation: none !important; transition: none !important; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   SECTIONS — base
   ========================================================= */
.section {
  position: relative;
  padding: clamp(32px, 4.5vh, 58px) 0;
  isolation: isolate;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vh, 56px);
  text-align: center;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  margin-bottom: 16px;
}
.section__title {
  font-weight: 900;
  font-size: clamp(1.7rem, 5.2vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section__subtitle {
  font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 14px;
}
.txt-lime { color: var(--lime); }

/* glow de atmosfera reutilizável */
.section--bonus::before,
.section--oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(60% 50% at 50% 0%, rgba(202, 219, 17, 0.10), transparent 70%);
  pointer-events: none;
}

/* =========================================================
   NICHO
   ========================================================= */
.niche-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.niche-card {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: clamp(0.86rem, 2.4vw, 0.98rem);
  color: var(--ink-soft);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.niche-card:hover {
  transform: translateY(-3px);
  border-color: rgba(202, 219, 17, 0.5);
  color: var(--white);
}
.niche-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime-glow);
  flex-shrink: 0;
}
.niche-card--accent {
  color: var(--teal-900);
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime) 70%, var(--lime-deep));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 28px -8px var(--lime-glow);
}
.niche-card--accent:hover { color: var(--teal-900); }

/* =========================================================
   ATRASO — comparação
   ========================================================= */
.compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}
.compare-card {
  position: relative;
  padding: 28px 26px;
  border-radius: 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.compare-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.compare-card__head h3 {
  font-weight: 900;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--white);
}
.compare-card__icon {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare-card__icon svg { width: 19px; height: 19px; fill: none; }
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
  font-size: clamp(0.92rem, 2.5vw, 1.02rem);
  line-height: 1.35;
  color: var(--ink-soft);
}
.mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  font-style: normal;
  margin-top: 1px;
}
.mark--x      { background: rgba(224, 20, 42, 0.16); color: #ff5a6e; }
.mark--check  { background: rgba(202, 219, 17, 0.16); color: var(--lime); }

.compare-card--neg .compare-card__icon { background: rgba(224, 20, 42, 0.16); color: #ff5a6e; }
.compare-card--neg { opacity: 0.92; }

.compare-card--pos {
  border-color: rgba(202, 219, 17, 0.45);
  box-shadow: 0 22px 60px -18px rgba(202, 219, 17, 0.28), var(--glass-shadow);
}
.compare-card--pos .compare-card__icon { background: rgba(202, 219, 17, 0.18); color: var(--lime); }
.compare-card__flag {
  position: absolute;
  top: 0; right: 20px;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  padding: 5px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px var(--lime-glow);
}

/* =========================================================
   BÔNUS
   ========================================================= */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bonus-card {
  position: relative;
  padding: 26px 24px 28px;
  border-radius: 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.bonus-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 219, 17, 0.18), transparent 70%);
  pointer-events: none;
}
.bonus-card:hover { transform: translateY(-5px); border-color: rgba(202, 219, 17, 0.4); }
.bonus-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bonus-card__num {
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
}
.bonus-card__free {
  font-weight: 900;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime));
  padding: 4px 11px;
  border-radius: 999px;
}
.bonus-card__media {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 4px 0 16px;
}
.bonus-card__media img {
  width: 100%;
  max-width: 230px;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.55));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bonus-card:hover .bonus-card__media img {
  transform: translateY(-5px) scale(1.04) rotate(-1deg);
}
.bonus-card__title {
  font-weight: 900;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  color: var(--white);
  margin-bottom: 10px;
}
.bonus-card__desc {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

/* =========================================================
   AUTORIDADE
   ========================================================= */
.authority {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background: var(--teal-900);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
/* Foto de fundo justificada ao topo */
.authority__media {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 0;
  height: clamp(440px, 86vw, 600px);
}
.authority__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 14%;
  display: block;
}
/* Gradiente no bottom da imagem → texto sobrepõe */
.authority__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60%;
  background: linear-gradient(to top,
              var(--teal-900) 6%,
              rgba(4, 24, 28, 0.9) 34%,
              rgba(4, 24, 28, 0.45) 66%,
              rgba(4, 24, 28, 0) 100%);
  pointer-events: none;
}
/* Texto sobre a parte inferior da imagem */
.authority__body {
  position: relative;
  z-index: 2;
  padding: clamp(330px, 74vw, 470px) clamp(24px, 5vw, 40px) clamp(30px, 4vh, 42px);
  text-align: center;
}
.authority__body .section__eyebrow { margin-bottom: 14px; }
.authority__body .section__title { margin-bottom: 16px; }
.authority__body p {
  font-weight: 500;
  font-size: clamp(0.95rem, 2.4vw, 1.04rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
  text-align: left;
}
.authority__body p strong { color: var(--white); font-weight: 700; }
.authority__stats {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.authority__stat {
  flex: 1;
  min-width: 130px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(202, 219, 17, 0.07);
  border: 1px solid rgba(202, 219, 17, 0.22);
}
.authority__stat strong {
  display: block;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--lime);
  line-height: 1;
}
.authority__stat span {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* =========================================================
   ANCORAGEM
   ========================================================= */
.anchor-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.anchor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.anchor-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  color: var(--ink-soft);
}
.anchor-val { font-weight: 700; color: var(--white); white-space: nowrap; }
.anchor-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  font-weight: 900;
  font-size: clamp(1.05rem, 3vw, 1.3rem);
  color: var(--white);
}
.anchor-total__val {
  color: var(--lime);
  position: relative;
}
.anchor-total__val::after {
  content: "";
  position: absolute;
  left: -6%; right: -6%; top: 52%;
  height: 2px;
  background: var(--red);
  transform: rotate(-8deg);
  box-shadow: 0 0 6px rgba(224, 20, 42, 0.5);
}
.anchor-note {
  text-align: center;
  max-width: 560px;
  margin: 30px auto 0;
  font-weight: 500;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.anchor-note strong { color: var(--lime); font-weight: 900; }
.anchor-arrow {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  color: var(--lime);
  animation: arrowBob 1.6s ease-in-out infinite;
}
.anchor-arrow svg {
  width: 40px; height: 40px;
  filter: drop-shadow(0 6px 16px var(--lime-glow));
}
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* =========================================================
   OFERTA
   ========================================================= */
.offer-card {
  max-width: 460px;
  margin: 0 auto;
  padding: 38px 22px 30px;
  border-radius: 28px;
  background: var(--glass-bg);
  border: 1px solid rgba(202, 219, 17, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 30px 80px -24px rgba(202, 219, 17, 0.25), var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price--offer {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 6px 0 4px;
  padding: 20px 0 0;
}
.offer-checks {
  list-style: none;
  width: 100%;
  max-width: 320px;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.offer-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 500;
  font-size: clamp(0.92rem, 2.5vw, 1.02rem);
  color: var(--ink-soft);
}
.cta--block {
  width: 100%;
  max-width: 400px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: clamp(0.92rem, 3.6vw, 1.12rem);
}
.offer-trust { margin-top: 16px; justify-content: center; text-align: center; }
.offer-trust span { white-space: nowrap; }
.offer-trust span:last-child {
  font-size: clamp(0.6rem, 2.5vw, 0.76rem);
}

/* =========================================================
   GARANTIA
   ========================================================= */
.guarantee {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 38px);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 34px) clamp(24px, 4vw, 40px);
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.guarantee__badge { flex-shrink: 0; }
.guarantee__badge img {
  width: clamp(120px, 26vw, 170px);
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
  animation: badgeFloat 3.5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.guarantee__title {
  font-weight: 900;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  color: var(--white);
  margin-bottom: 10px;
}
.guarantee__text {
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.08rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.guarantee__text strong { color: var(--lime); font-weight: 700; }

/* =========================================================
   FAQ — sanfona
   ========================================================= */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(202, 219, 17, 0.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  color: var(--white);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--lime); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 2.4px;
  border-radius: 2px;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  padding: 0 22px 20px;
  font-weight: 500;
  font-size: clamp(0.92rem, 2.4vw, 1.02rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact__sub {
  font-weight: 500;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  color: var(--ink-soft);
  margin: 12px 0 26px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: #04181c;
  padding: 16px 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #3ce97a, #25d366 55%, #1aa84f);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 38px -8px rgba(37, 211, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 20px 46px -8px rgba(37, 211, 102, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.whatsapp-btn__icon { width: 26px; height: 26px; flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(34px, 5vh, 52px) 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__logo {
  width: clamp(150px, 36vw, 190px);
  height: auto;
  opacity: 0.92;
}
.footer__legal p {
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 768px) {
  .hero__grad--bottom { height: 60%; }
  .hero__content { padding-bottom: clamp(48px, 8vh, 80px); }
}

/* Tablet — empilha bônus */
@media (max-width: 860px) {
  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Garantia empilha e centraliza no mobile */
@media (max-width: 600px) {
  .guarantee { flex-direction: column; text-align: center; }
}

/* Comparação empilha em telas estreitas */
@media (max-width: 620px) {
  .compare { grid-template-columns: 1fr; max-width: 440px; }
  .compare-card--pos { order: -1; }
}

/* MOBILE — vídeo justificado ao topo, largura total, fade no rodapé */
@media (max-width: 600px) {
  .hero {
    min-height: auto;             /* altura definida por vídeo + conteúdo */
    display: block;
  }

  /* Vídeo em fluxo, colado no topo, sem zoom (largura total) */
  .hero__media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    aspect-ratio: 640 / 888;      /* mantém o vídeo inteiro */
  }
  .hero__video { object-fit: cover; }

  /* Sombra no topo do vídeo para legibilidade do logo */
  .hero__media::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 32%;
    background: linear-gradient(to bottom,
                rgba(4, 24, 28, 0.85) 0%,
                rgba(4, 24, 28, 0.35) 45%,
                rgba(4, 24, 28, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Fade no rodapé do vídeo → mescla com o background teal */
  .hero__media-fade {
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 56%;
    background: linear-gradient(to top,
                var(--teal-900) 0%,
                var(--teal-900) 30%,          /* teal sólido bem antes da borda */
                rgba(4, 24, 28, 0.92) 45%,
                rgba(4, 24, 28, 0.55) 68%,
                rgba(4, 24, 28, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Gradientes full-bleed do desktop não se aplicam aqui */
  .hero__grad--top,
  .hero__grad--bottom { display: none; }

  /* Grão criava fronteira de textura na junção vídeo/fundo */
  .hero__grain { display: none; }

  /* Logo sobreposto ao topo do vídeo */
  .hero__logo {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 5;
    padding-top: 14px;
  }

  /* Conteúdo sobe e encosta no fade do vídeo */
  .hero__content {
    position: relative;
    z-index: 5;
    margin-top: -16vh;
    padding-bottom: clamp(40px, 8vh, 72px);
  }
}

@media (max-width: 360px) {
  .urgency-bar__text { font-size: 0.66rem; }
  .urgency-bar__inner { gap: 7px; }
}
