/* ============================================================
   Página 1 — Landing principal
   ============================================================ */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 20px 56px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 82% 8%, rgba(255, 138, 0, 0.12), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8% 95%, rgba(91, 110, 245, 0.1), transparent 60%);
}

.hero__inner {
  width: 100%;
  text-align: left;
}

.hero__title {
  font-size: clamp(1.7rem, 6.4cqw, 2.2rem);
  line-height: 1.12;
  color: var(--ink);
  opacity: 0;
  animation: rise 0.7s var(--ease) 0.05s forwards;
}

.hero__subtitle {
  margin-top: 10px;
  font-size: clamp(0.95rem, 1.2cqw + 0.8rem, 1.05rem);
  color: var(--ink-soft);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.12s forwards;
}

.hero__vsl-caption {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-faint);
  opacity: 0;
  animation: rise 0.7s var(--ease) 0.16s forwards;
}

.hero__vsl {
  margin-top: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(11, 27, 43, 0.04), 0 24px 48px -28px rgba(11, 27, 43, 0.2);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.2s forwards;
}

.hero__actions {
  margin-top: 18px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.35s forwards;
}

.hero__actions .btn {
  width: 100%;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- indicador de scroll — mostra que a página continua ---- */
.hero__scroll-cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  width: max-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-faint);
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.5s forwards;
}

.hero__scroll-cue svg {
  width: 16px;
  height: 16px;
  animation: scroll-cue-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* Telas baixas (ex.: iPhone SE, ou janela de desktop pouco alta) —
   comprime o hero para caber inteiro na primeira dobra */
@media (max-height: 780px) {
  .hero {
    padding: 60px 20px 44px;
  }

  .hero__subtitle { margin-top: 8px; }
  .hero__vsl-caption { margin-top: 14px; }
  .hero__vsl { margin-top: 6px; }
  .hero__actions { margin-top: 14px; }
  .hero__scroll-cue { display: none; }
}

/* ============================================================
   Explicação — o que é a extensão
   ============================================================ */
.section--explainer {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.explainer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.explainer__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: center;
}

.explainer__benefits {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.explainer__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  line-height: 1.3;
}

.explainer__benefits svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ocean-500);
}

/* ============================================================
   Como funciona na prática
   ============================================================ */
.section--how {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.how-steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.how-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 44px;
  bottom: -4px;
  width: 1px;
  background: var(--line);
}

.how-steps__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.how-steps__text {
  margin-top: 5px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}

/* ============================================================
   Diferenciais
   ============================================================ */
.section--differentials {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.differentials {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.differentials__card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.differentials__card-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.differentials__card-desc {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   Recursos
   ============================================================ */
.section--recursos {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.recursos {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.recursos__item {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.recursos__item-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
}

.recursos__item-desc {
  margin-top: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.section--faq {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.faq {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item:first-child {
  border-top: 1px solid var(--line);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--ink-faint);
  transition: transform 0.3s var(--ease);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 4px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   CTA final
   ============================================================ */
.section--final-cta {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.final-cta__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
