
/* ==============================================
   Método Validado | styles.css
   Mobile-first, responsive landing page
   Afiliada: Carla Felicio
   ============================================== */

/* -----------------------------------------------
   VARIÁVEIS CSS
----------------------------------------------- */
:root {
  --primary:        #D4A5A5;
  --primary-light:  #FFF5F5;
  --gold:           #C9B037;
  --cta-green:      #22C55E;
  --cta-green-dark: #16A34A;
  --cta-orange:     #FF6B35;
  --cta-orange-dark:#E55A24;
  --bg:             #FFFFFF;
  --bg-alt:         #FFF5F5;
  --text:           #1F2937;
  --text-muted:     #6B7280;
  --border:         #E5E7EB;
  --shadow:         0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-md:      0 6px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg:      0 10px 30px rgba(0, 0, 0, 0.16);
  --radius:         8px;
  --radius-lg:      14px;
  --font-heading:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:     0.25s ease;
}

/* -----------------------------------------------
   RESET & BASE
----------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* -----------------------------------------------
   TIPOGRAFIA
----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }

p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 700; }

/* -----------------------------------------------
   LAYOUT GENÉRICO
----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

.section--alt  { background: var(--bg-alt); }

.section--dark {
  background: var(--text);
  color: #fff;
}
.section--dark p { color: #E5E7EB; }

.section__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* -----------------------------------------------
   BOTÕES
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  line-height: 1.2;
}

/* Verde */
.btn--green {
  background: var(--cta-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.38);
}
.btn--green:hover,
.btn--green:focus-visible {
  background: var(--cta-green-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* Laranja */
.btn--orange {
  background: var(--cta-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.38);
}
.btn--orange:hover,
.btn--orange:focus-visible {
  background: var(--cta-orange-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Grande */
.btn--large {
  padding: 1.1rem 2.25rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  border-radius: var(--radius-lg);
}

/* Pulsante */
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0);    }
}
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0   rgba(255, 107, 53, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 107, 53, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(255, 107, 53, 0);    }
}

.btn--pulse.btn--green  { animation: pulse-green  2.5s ease infinite; }
.btn--pulse.btn--orange { animation: pulse-orange 2.5s ease infinite; }

/* -----------------------------------------------
   LISTA DE BENEFÍCIOS
----------------------------------------------- */
.benefit-list li {
  padding: 0.4rem 0;
  font-size: clamp(1rem, 2vw, 1.05rem);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.benefit-list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}
.benefit-list--grid li {
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* -----------------------------------------------
   PRÉ-HEADLINE / ESCASSEZ
----------------------------------------------- */
.pre-headline {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 700;
  color: var(--cta-orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Animação quando vaga cai */
@keyframes vagaDrop {
  0%   { transform: scale(1);    color: inherit; }
  30%  { transform: scale(1.35); color: #E32222; }
  70%  { transform: scale(1.2);  color: #E32222; }
  100% { transform: scale(1);    color: inherit; }
}
.vagas-drop {
  display: inline-block;
  animation: vagaDrop 1.5s ease forwards;
}

.scarcity-text {
  font-size: 0.95rem;
  color: var(--cta-orange);
  font-weight: 600;
  margin-top: 0.75rem;
}

/* ===============================================
   BLOCO 1 — HERO
=============================================== */
.hero {
  background: linear-gradient(135deg, #ffffff 55%, var(--primary-light) 100%);
  padding: 3rem 0 3.5rem;
  border-bottom: 3px solid var(--primary);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.hero__text {
  width: 100%;
}

.hero__headline {
  font-size: clamp(1.6rem, 4.5vw, 2.75rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.2;
}
.hero__headline em    { color: var(--primary); font-style: italic; }
.hero__headline strong { color: var(--cta-green); }

.hero__sub {
  color: #374151;
  margin-bottom: 1.5rem;
}

.hero__bullets {
  margin: 0 0 1.75rem;
}
.hero__bullets li {
  font-size: clamp(1rem, 2vw, 1.05rem);
  padding: 0.35rem 0;
}

/* --- Carrossel de benefícios (hero) --- */
.hero__carousel {
  margin: 0 0 1.75rem;
}
.hero__carousel-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__carousel-track {
  flex: 1;
  min-height: 3.5rem;
}
.hero__carousel-slide {
  display: none;
  font-size: clamp(1rem, 2vw, 1.05rem);
  padding: 0.6rem 1rem;
  border-left: 4px solid var(--cta-green);
  background: rgba(34, 197, 94, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero__carousel-slide.is-active {
  display: block;
  opacity: 1;
}
/* Setas do carrossel — visíveis em todos os tamanhos */
.hero__carousel-arrow {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}
.hero__carousel-arrow:hover:not(:disabled) { background: var(--cta-green); }
.hero__carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.hero__carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-left: 2.5rem; /* alinha com o slide, compensando a seta */
}
.hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.hero__carousel-dot.is-active {
  background: var(--cta-green);
  transform: scale(1.3);
}

.hero__image {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--primary);
  flex-shrink: 0;
}
.hero__image img {
  width: 100%;
  object-fit: cover;
}

/* Mobile: esconde original, mostra cópia inline */
.hero__image:not(.hero__image--mobile) { display: none; }
.hero__image--mobile {
  display: block;
  margin: 1.25rem auto;
  max-width: 320px;
}

/* ===============================================
   BLOCO 2 — IDENTIFICAÇÃO
=============================================== */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}
.pain-list li {
  padding: 0.9rem 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(0.97rem, 2vw, 1.05rem);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.transition-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.transition-box p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text);
  margin: 0;
}
.transition-box em { color: var(--text); font-style: italic; font-weight: 600; }

/* ===============================================
   BLOCO 3 — HISTÓRIA (linha do tempo)
=============================================== */

/* Wrapper do slider — mobile: esconde overflow */
.story__slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 2.5rem; /* espaço para as setas */
}

/* Track do slider */
.story__timeline {
  display: flex;
  flex-direction: row;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cada card ocupa 100% no mobile */
.story__part {
  min-width: 100%;
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
}
.story__part h3 {
  margin: 0.5rem 0 1rem;
}

/* Setas de navegação (visíveis só no mobile) */
.story__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}
.story__arrow:hover:not(:disabled) { background: var(--cta-green); }
.story__arrow:disabled { opacity: 0.3; cursor: default; }
.story__arrow--prev { left: 0; }
.story__arrow--next { right: 0; }

.story__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.story__badge--dark  { background: var(--text); color: #fff; }
.story__badge--gold  { background: var(--gold); color: var(--text); }
.story__badge--green { background: var(--cta-green); color: #fff; }

.story__cta {
  margin-top: 2rem;
  text-align: center;
}
.story__cta p { margin-bottom: 1rem; }

/* ===============================================
   BLOCO 4 — SOLUÇÃO (MÉTODO VALIDADO)
=============================================== */
.authority-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}
.authority-block p { color: #fff; margin: 0; }
.authority-block strong { color: var(--gold); }

/* ===============================================
   BLOCO 5 — PROVA SOCIAL (vídeos)
=============================================== */

/* Wrapper do slider de vídeos (mobile) */
.video-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 2.5rem;
}

/* Track: flex row no mobile para deslizar */
.video-proof-grid {
  display: flex;
  flex-direction: row;
  gap: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-proof-item {
  min-width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Setas do slider de vídeos */
.video-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), opacity var(--transition);
}
.video-slider__arrow:hover:not(:disabled) { background: var(--cta-green); }
.video-slider__arrow:disabled { opacity: 0.3; cursor: default; }
.video-slider__arrow--prev { left: 0; }
.video-slider__arrow--next { right: 0; }

/* ===============================================
   BLOCO 6 — OFERTA
=============================================== */
.offer__card {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  background: #fff;
  border: 2px solid var(--cta-green);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.offer__card h3 {
  margin-bottom: 0.35rem;
  color: var(--cta-green);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}
.offer__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.offer__feature:last-child { border-bottom: none; padding-bottom: 0; }
.offer__feature:first-child { padding-top: 0; }
.offer__feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
.offer__feature p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.offer__bonus-title {
  text-align: center;
  margin-bottom: 1.25rem;
}

.bonus-table {
  max-width: 680px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.bonus-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.bonus-row:last-child { border-bottom: none; }
.bonus-row:nth-child(even) { background: var(--bg-alt); }

.bonus-row__icon { font-size: 1.4rem; flex-shrink: 0; }
.bonus-row__name { flex: 1; font-weight: 500; font-size: 0.95rem; }
.bonus-row__name em { display: block; font-style: normal; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 0.1rem; }

/* Bônus Especial — destaque */
.bonus-row--special {
  background: linear-gradient(135deg, #fffbeb, #fef3c7) !important;
  border-left: 4px solid var(--gold);
}
.bonus-row--special .bonus-row__name em { color: var(--gold); }

.price-box {
  max-width: 480px;
  margin: 0 auto 2rem;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.price-box__from {
  font-size: 0.95rem;
  color: #9CA3AF;
  margin-bottom: 0.4rem;
}
.price-box__from s { text-decoration: line-through; font-size: 1.1em; }
.price-box__label {
  font-size: 1rem;
  color: #D1D5DB;
  margin-bottom: 1.25rem;
}
/* Bloco de suspense do preço */
.price-box__mystery {
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  margin-bottom: 1.75rem;
}
.price-box__mystery-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.price-box__mystery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.price-box__mystery-title strong { color: var(--gold); }
.price-box__mystery-hint {
  font-size: 0.95rem;
  color: #D1D5DB;
  line-height: 1.6;
  margin-bottom: 0;
}
.price-box__mystery-hint strong { color: var(--cta-green); }

.anchor-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-muted);
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
}

/* ===============================================
   BLOCO 7 — GARANTIA
=============================================== */
.guarantee {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guarantee__seal { flex-shrink: 0; }

.guarantee__text h2 {
  color: var(--cta-green);
  margin-bottom: 1rem;
}

/* ===============================================
   BLOCO 8 — URGÊNCIA
=============================================== */
.urgency__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.urgency__title {
  color: #fff;
  margin-bottom: 2rem;
  font-size: clamp(1.25rem, 3.5vw, 2rem);
}

.countdown { margin-bottom: 2rem; }
.countdown__label {
  font-size: 1.1rem;
  color: #F3F4F6;
  margin-bottom: 1rem;
}

.countdown__timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.countdown__block {
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--cta-orange);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-width: 68px;
  text-align: center;
}
.countdown__number {
  display: block;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--cta-orange);
  line-height: 1;
}
.countdown__unit {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D1D5DB;
}
.countdown__sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cta-orange);
  align-self: center;
  margin-bottom: 1.2rem;
}
.countdown__sub {
  font-size: 0.95rem;
  color: #D1D5DB;
  margin-top: 1rem;
}

.scarcity-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--cta-orange);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
}
.scarcity-box p { color: #fff; font-size: 1.05rem; }
.scarcity-box strong { color: var(--cta-orange); }

/* ===============================================
   BLOCO 9 — FAQ
=============================================== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq__question {
  padding: 1.15rem 1.5rem;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
  color: var(--text);
}
.faq__question:hover { background: var(--bg-alt); }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { display: none; }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cta-green);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
details[open] > .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
}
.faq__answer p { color: #374151; font-size: 1rem; }

/* ===============================================
   BLOCO 10 — CTA FINAL
=============================================== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  text-align: center;
}
.final-cta__title { margin-bottom: 1.25rem; }
.final-cta__text {
  max-width: 640px;
  margin: 0 auto 2rem;
}
.final-cta__guarantee {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===============================================
   FOOTER
=============================================== */
.footer {
  background: var(--text);
  color: #9CA3AF;
  padding: 2rem 0;
  text-align: center;
}
.footer p { font-size: 0.85rem; margin-bottom: 0.5rem; color: #9CA3AF; }
.footer__disclaimer {
  font-size: 0.75rem;
  max-width: 680px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

/* ===============================================
   BLOCO 11 — MODAL
=============================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(28px);
  transition: transform 0.3s ease;
}
.modal-overlay.is-open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0.25rem;
  border-radius: 4px;
}
.modal-close:hover { color: var(--text); }

.modal-card__title {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
  padding-right: 1.5rem;
}
.modal-card__sub {
  font-size: 0.93rem;
  color: var(--cta-orange);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Formulário */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--cta-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  cursor: pointer;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  color: var(--text);
}
.radio-label:hover { background: var(--bg-alt); }
.radio-label input {
  cursor: pointer;
  accent-color: var(--cta-green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-error {
  color: #EF4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

/* Stepper de passos */
.form-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.75rem;
}

.form-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.form-stepper__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.form-stepper__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.form-stepper__step.is-active .form-stepper__num {
  background: var(--cta-green);
  color: #fff;
}
.form-stepper__step.is-active .form-stepper__label {
  color: var(--cta-green);
}
.form-stepper__step.is-done .form-stepper__num {
  background: var(--cta-green-dark);
  color: #fff;
}
.form-stepper__step.is-done .form-stepper__num::after {
  content: '✓';
}

.form-stepper__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 0.75rem;
  margin-bottom: 1.2rem;
  max-width: 80px;
  transition: background var(--transition);
}
.form-stepper__line.is-done {
  background: var(--cta-green-dark);
}

/* Transição entre steps */
@keyframes stepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
#form-step-2 {
  animation: stepIn 0.3s ease;
}

/* Botão voltar */
.btn-back {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  text-align: center;
  transition: color var(--transition);
}
.btn-back:hover { color: var(--text); }

/* -----------------------------------------------
   QUIZ — Imagem, Progresso e Opções
----------------------------------------------- */

/* Slot de imagem */
.quiz-image-slot {
  margin: -0.5rem -2rem 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.quiz-image-slot img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  display: block;
}

/* Barra de progresso */
.quiz-progress {
  margin-bottom: 1.5rem;
}
.quiz-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}
.quiz-progress__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quiz-progress__pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cta-green);
}
.quiz-progress__track {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cta-green), #16A34A);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.quiz-progress__step-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  margin: 0.3rem 0 0;
}

/* Perguntas */
.quiz-question { display: none; }
.quiz-question.is-active { display: block; }

@keyframes quizSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.quiz-question.is-active {
  animation: quizSlideIn 0.3s ease;
}

.quiz-question__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.35;
}

/* Opções de resposta */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.quiz-option {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  line-height: 1.4;
}
.quiz-option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(3px);
}
.quiz-option.is-selected {
  border-color: var(--cta-green);
  background: rgba(34, 197, 94, 0.08);
  color: var(--cta-green-dark);
  font-weight: 600;
}
.quiz-option.is-selected::after {
  content: ' ✓';
  font-weight: 700;
}

/* Sucesso */
.modal-success {
  text-align: center;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.modal-success__icon { font-size: 3.5rem; }
.modal-success h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
.modal-success p { font-size: 1rem; }
.modal-success__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ===============================================
   BOTÃO WHATSAPP FLUTUANTE
=============================================== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.65);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ===============================================
   ANIMAÇÕES DE SCROLL (fade-in)
=============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in--delay { transition-delay: 0.2s; }

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================================
   RESPONSIVE — TABLET (≥ 768px)
=============================================== */
@media (min-width: 768px) {

  section { padding: 5rem 0; }

  /* Hero dois blocos lado a lado */
  .hero__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
  .hero__text  { flex: 3; }
  .hero__image { flex: 2; max-width: 380px; }
  /* no desktop: mostra original, esconde cópia mobile */
  .hero__image--mobile { display: none; }
  .hero__image:not(.hero__image--mobile) { display: block; }

  /* Benefícios em 2 colunas */
  .benefit-list--grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Linha do tempo — 3 cards lado a lado no desktop */
  .story__slider-wrapper {
    overflow: visible;
    padding: 0;
  }
  .story__timeline {
    gap: 2rem;
    transform: none !important;
  }
  .story__part {
    min-width: 0;
    flex: 1;
  }
  .story__arrow {
    display: none;
  }
  /* Linha conectora entre os cards */
  .story__timeline::before {
    content: '';
    position: absolute;
    top: 1.85rem;
    left: calc(33.33% - 1rem);
    right: calc(33.33% - 1rem);
    height: 3px;
    background: linear-gradient(to right, var(--text) 0%, var(--gold) 50%, var(--cta-green) 100%);
    pointer-events: none;
  }
  .story__timeline {
    position: relative;
  }

  /* Vídeos depoimentos — desktop: volta ao grid, setas somem */
  .video-slider-wrapper {
    overflow: visible;
    padding: 0;
  }
  .video-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    transform: none !important;
  }
  .video-proof-item { min-width: 0; }
  .video-slider__arrow { display: none; }

  /* Hero carousel — desktop: 2×2 grid, sem setas nem dots */
  .hero__carousel-inner { display: block; }
  .hero__carousel-arrow { display: none; }
  .hero__carousel-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .hero__carousel-slide {
    display: block !important;
    opacity: 1 !important;
  }
  .hero__carousel-dots { display: none; }

}

/* ===============================================
   RESPONSIVE — DESKTOP (≥ 1024px)
=============================================== */
@media (min-width: 1024px) {

  /* Vídeos depoimentos 4 colunas no desktop grande */
  .video-proof-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

}


/* =============================================
   SELETOR DE TEMAS (widget flutuante)
============================================= */
.theme-switcher {
  position: fixed;
  bottom: 6rem;
  left: 1rem;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  padding: 0.5rem 0.6rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(6px);
}
.theme-switcher__label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
}
.theme-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.theme-btn.is-active { border-color: var(--cta-green); transform: scale(1.2); }
.theme-btn--rose { background: #D4A5A5; }
.theme-btn--gold { background: #C9A600; }
.theme-btn--dark { background: #0F0F1A; }


/* =============================================
   TEMA: DOURADO
   Fundo branco, detalhes e acentos em ouro,
   texto preto no pre-headline.
============================================= */
[data-theme="gold"] {
  --primary:        #C9B037;
  --primary-light:  #FFF8DC;
  --gold:           #C9B037;
  --bg:             #FFFFFF;
  --bg-alt:         #FFFBEA;
  --border:         #D4AF37;
  --text:           #111111;
  --text-muted:     #6B5F3E;
}

[data-theme="gold"] .hero {
  background: linear-gradient(135deg, #ffffff 55%, #FFF8DC 100%);
  border-bottom-color: var(--primary);
}

/* Pre-headline: fundo preto, texto amarelo */
[data-theme="gold"] .pre-headline {
  background: #111111;
  color: #FFD700;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  display: inline-block;
}

[data-theme="gold"] .hero__carousel-slide {
  background: rgba(201, 176, 55, 0.08);
  border-left-color: var(--primary);
}

[data-theme="gold"] .story__part {
  border-left-color: var(--primary);
}

[data-theme="gold"] .offer__card {
  border-color: var(--primary);
}

[data-theme="gold"] .bonus-row--special {
  background: rgba(201,176,55,0.15) !important;
  border-left-color: var(--primary);
}

/* =============================================
   TEMA: NOITE ELEGANTE (dark)
   Fundo profundo, rosa-ouro sobre escuro.
   Sugestão: visual premium, sofisticado.
============================================= */
[data-theme="dark"] {
  --primary:        #F4A0C0;
  --primary-light:  rgba(244, 160, 192, 0.12);
  --bg:             #0F0F1A;
  --bg-alt:         #1A1A2E;
  --border:         #2D2D4E;
  --text:           #F0ECF8;
  --text-muted:     #A89BBF;
  --shadow:         0 4px 6px rgba(0,0,0,0.4);
  --shadow-md:      0 6px 16px rgba(0,0,0,0.55);
  --shadow-lg:      0 10px 30px rgba(0,0,0,0.65);
}

/* Fundo do body */
[data-theme="dark"] body { background: var(--bg); color: var(--text); }

/* Hero */
[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #0f0f1a 55%, #1a1a2e 100%);
}

/* Títulos */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 { color: var(--text); }

/* Cards e painéis brancos */
[data-theme="dark"] .story__part,
[data-theme="dark"] .offer__card,
[data-theme="dark"] .faq__item,
[data-theme="dark"] .modal-card,
[data-theme="dark"] .video-proof-item {
  background: #1A1A2E;
  border-color: var(--border);
}

/* Bonus rows */
[data-theme="dark"] .bonus-row { background: #1A1A2E; border-color: var(--border); }
[data-theme="dark"] .bonus-row:nth-child(even) { background: #22223A; }
[data-theme="dark"] .bonus-row--special { background: rgba(201,176,55,0.15) !important; }

/* Seções escuras (price-box, footer, urgency) */
[data-theme="dark"] .price-box,
[data-theme="dark"] .footer,
[data-theme="dark"] .section--dark { background: #06060F; }

/* Badge escuro na história */
[data-theme="dark"] .story__badge--dark { background: #000; }

/* Slide do carousel */
[data-theme="dark"] .hero__carousel-slide {
  background: rgba(244, 160, 192, 0.08);
}

/* Transition box */
[data-theme="dark"] .transition-box {
  background: rgba(244, 160, 192, 0.08);
  border-color: var(--primary);
  color: var(--text);
}

/* Campos do formulário */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group label { color: var(--text); }
[data-theme="dark"] input[type="text"],
[data-theme="dark"] input[type="tel"],
[data-theme="dark"] input[type="email"] {
  background: #22223A;
  color: var(--text);
  border-color: var(--border);
}

/* Contador */
[data-theme="dark"] .countdown__block { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .scarcity-box     { background: rgba(255,255,255,0.05); }

/* Widget de tema em dark */
[data-theme="dark"] .theme-switcher { background: rgba(26,26,46,0.95); }
[data-theme="dark"] .theme-switcher__label { color: #6B6B8F; }