/* ==========================================================================
   Sapatinhos de Lã — réplica 1:1
   Valores retirados de referencia/tokens.md (computed styles do original).
   Breakpoints reais do original: 640 / 768 / 1024 / 1280 / 1400.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens (idênticos ao :root do original)
   -------------------------------------------------------------------------- */
:root {
  --background: 40 33% 97%;
  --foreground: 260 12% 28%;
  --card: 40 40% 99%;
  --card-foreground: 260 12% 28%;
  --popover: 40 40% 99%;
  --popover-foreground: 260 12% 28%;
  --primary: 258 28% 48%;
  --primary-foreground: 0 0% 100%;
  --secondary: 255 40% 95%;
  --secondary-foreground: 258 25% 35%;
  --muted: 255 25% 94%;
  --muted-foreground: 258 8% 46%;
  --accent: 340 60% 55%;
  --accent-foreground: 0 0% 100%;
  --headline-accent: 205 55% 52%;
  --green: 128 26% 52%;
  --green-foreground: 0 0% 100%;
  --sky: 205 55% 60%;
  --sky-foreground: 0 0% 100%;
  --destructive: 0 72% 55%;
  --destructive-foreground: 0 0% 98%;
  --border: 258 22% 88%;
  --input: 258 22% 88%;
  --ring: 258 28% 48%;
  --chart-1: 258 28% 58%;
  --chart-2: 128 26% 52%;
  --chart-3: 205 55% 60%;
  --chart-4: 340 60% 68%;
  --chart-5: 42 70% 62%;
  --radius: 0.75rem;

  /* HEX literais usados direto nas classes do original */
  --cream: #FAF7F2;
  --lilac: #F4F1FA;

  --font-headline: "Belleza", "Arial", sans-serif;
  --font-body: "Alegreya", "Times New Roman", serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* --------------------------------------------------------------------------
   2. Reset (equivalente ao preflight do Tailwind, só o que a página usa)
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid hsl(var(--border)); margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; tab-size: 4; }
html.scroll-smooth { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: inherit; }
button { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; background: transparent; background-image: none; cursor: pointer; }
img, svg, video, canvas, iframe { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
strong, b { font-weight: 700; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}
.line-through { text-decoration-line: line-through; }
.text-accent { color: hsl(var(--accent)); }
.text-headline-accent { color: hsl(var(--headline-accent)); }

/* --------------------------------------------------------------------------
   3. Layout base
   -------------------------------------------------------------------------- */
.page { display: flex; flex-direction: column; min-height: 100vh; background-color: hsl(var(--background)); overflow-x: hidden; }
.main { flex: 1 1 0%; }

.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }
@media (min-width: 768px) { .container { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1400px) { .container { max-width: 1400px; } }

.section { width: 100%; padding-top: 48px; padding-bottom: 48px; }
@media (min-width: 768px) { .section { padding-top: 96px; padding-bottom: 96px; } }
@media (min-width: 1024px) { .section { padding-top: 128px; padding-bottom: 128px; } }

.section--cream { background-color: var(--cream); }
.section--lilac { background-color: var(--lilac); }
.section--bg { background-color: hsl(var(--background)); }
.section--primary { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }

.section--dots-primary {
  position: relative;
  background-image: radial-gradient(circle, rgba(109, 90, 156, 0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.section--dots-white {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

/* pricing: pt-8 md:pt-12 lg:pt-16 / pb-12 md:pb-24 lg:pb-32 */
.section--pricing { padding-top: 32px; }
@media (min-width: 768px) { .section--pricing { padding-top: 48px; } }
@media (min-width: 1024px) { .section--pricing { padding-top: 64px; } }
/* garantia: pt-0 */
.section--garantia { padding-top: 0; }

/* --------------------------------------------------------------------------
   4. Tipografia compartilhada
   -------------------------------------------------------------------------- */
.h2 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.05em;
  color: hsl(var(--foreground));
}
@media (min-width: 640px) { .h2 { font-size: 48px; line-height: 48px; } }

/* text-balance existe só em catalogo, depoimentos, area-exclusiva e faq */
.h2--balance, .h2--catalogo, .h2--faq, .h2--area { text-wrap: balance; }

.h2--catalogo {
  font-size: clamp(1.5rem, 8.6vw, 2.25rem);
  line-height: 1.5;
  color: hsl(var(--primary));
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}
@media (min-width: 640px) { .h2--catalogo { font-size: 60px; line-height: 60px; } }

.h2--faq {
  font-size: 36px; line-height: 40px;
  color: hsl(var(--primary));
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}
@media (min-width: 640px) { .h2--faq { font-size: 60px; line-height: 60px; } }

.h2--area {
  font-size: 36px; line-height: 40px;
  color: #fff;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}
@media (min-width: 640px) { .h2--area { font-size: 48px; line-height: 48px; } }

.h2--about { color: hsl(var(--primary)); }
@media (min-width: 640px) { .h2--about { font-size: 36px; line-height: 40px; } }
@media (min-width: 768px) { .h2--about { font-size: 48px; line-height: 48px; } }

@media (min-width: 640px) { .h2--footer { font-size: 36px; line-height: 40px; } }
@media (min-width: 768px) { .h2--footer { font-size: 48px; line-height: 48px; } }

/* p lead: base / md:text-xl-relaxed / lg:text-base-relaxed / xl:text-xl-relaxed */
.lead {
  max-width: 900px;
  font-size: 16px; line-height: 24px;
  color: hsl(var(--foreground) / 0.8);
  text-wrap: pretty;
}
@media (min-width: 768px) { .lead { font-size: 20px; line-height: 32.5px; } }
@media (min-width: 1024px) { .lead { font-size: 16px; line-height: 26px; } }
@media (min-width: 1280px) { .lead { font-size: 20px; line-height: 32.5px; } }
.lead--faq { max-width: 700px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .lead--faq { font-size: 18px; line-height: 28px; } }
@media (min-width: 1024px) { .lead--faq { font-size: 18px; line-height: 28px; } }
@media (min-width: 1280px) { .lead--faq { font-size: 18px; line-height: 28px; } }

.section-head { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.section-head__inner > * + * { margin-top: 8px; }

.dash { margin: 8px auto 0; height: 4px; width: 64px; border-top: 2px dashed hsl(var(--accent) / 0.7); }
.dash--left { margin-left: 0; margin-right: 0; }
.dash--hero { margin: 8px 0; height: 4px; width: 96px; border-top: 2px dashed hsl(var(--accent)); }

.br-sm-hidden { display: inline; }
@media (min-width: 640px) { .br-sm-hidden { display: none; } }

/* --------------------------------------------------------------------------
   5. Ícones (Lucide)
   -------------------------------------------------------------------------- */
.icon { width: 24px; height: 24px; flex-shrink: 0; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 32px; height: 32px; }
.icon--xl { width: 40px; height: 40px; }
.icon--mr2 { margin-right: 8px; }
.icon--primary { color: hsl(var(--primary)); }
.icon--accent { color: hsl(var(--accent)); }
.icon--star-amber { width: 16px; height: 16px; margin-right: 8px; fill: #fcd34d; color: #f59e0b; }
.icon--star-yellow { width: 16px; height: 16px; margin-right: 8px; fill: #713f12; color: #ca8a04; }

@keyframes spin-slow { 0% { transform: rotate(0deg); } to { transform: rotate(1turn); } }
.spin-slow { animation: spin-slow 3s linear infinite; }

/* --------------------------------------------------------------------------
   6. Badges (pill)
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.15);
  background-color: hsl(var(--card));
  padding: 6px 16px;
  font-size: 14px; line-height: 20px; font-weight: 500;
  color: hsl(var(--primary));
  box-shadow: var(--shadow-sm);
}
.badge--secondary {
  width: fit-content;
  gap: 0;
  border-color: transparent;
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  padding: 2px 10px;
  font-size: 12px; line-height: 16px; font-weight: 600;
  box-shadow: none;
  transition: background-color 150ms var(--ease);
}
.badge--secondary:hover { background-color: hsl(var(--secondary) / 0.8); }

/* --------------------------------------------------------------------------
   7. Botões
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  white-space: nowrap; font-weight: 500;
  border-radius: 10px; /* calc(var(--radius) - 2px) */
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring));
}
.btn--accent { background-color: hsl(var(--accent)); color: hsl(var(--accent-foreground)); box-shadow: var(--shadow-lg); }
.btn--primary { background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground)); box-shadow: var(--shadow-lg); }

/* CTA grande: h-14 px-8 text-base md:text-lg, hover:scale-105 active:scale-100 */
.btn--lg {
  height: 56px; padding: 0 32px;
  font-size: 16px; line-height: 24px;
  transition: transform 200ms var(--ease);
}
@media (min-width: 768px) { .btn--lg { font-size: 18px; line-height: 28px; } }
.btn--lg:hover { background-color: hsl(var(--accent) / 0.9); transform: scale(1.05); }
.btn--lg:active { transform: scale(1); }

/* CTA pulsante: h-14 px-10 text-base md:text-lg */
.btn--pulse {
  height: 56px; padding: 0 40px;
  font-size: 16px; line-height: 24px;
  animation: gentle-pulse-accent 2s infinite;
  transition: color 150ms var(--ease), background-color 150ms var(--ease), border-color 150ms var(--ease);
}
@media (min-width: 768px) { .btn--pulse { font-size: 18px; line-height: 28px; } }
.btn--accent.btn--pulse:hover { background-color: hsl(var(--accent) / 0.9); }
.btn--primary.btn--pulse:hover { background-color: hsl(var(--primary) / 0.9); }
.btn--block { display: flex; width: 100%; }

/* CTA do footer: h-11 px-8 text-sm */
.btn--sm {
  height: 44px; padding: 0 32px;
  font-size: 14px; line-height: 20px;
  transition: transform 200ms var(--ease);
}
.btn--sm:hover { background-color: hsl(var(--accent) / 0.9); transform: scale(1.05); }
.btn--sm:active { transform: scale(1); }

@keyframes gentle-pulse-accent { 0%, to { transform: scale(1); } 50% { transform: scale(1.05); } }

/* --------------------------------------------------------------------------
   8. Topbar (contagem regressiva)
   -------------------------------------------------------------------------- */
.topbar {
  background-color: var(--cream);
  color: hsl(var(--primary));
  padding-top: 12px; padding-bottom: 12px;
  position: relative;
  z-index: 10;
  margin-bottom: -128px;
}
@media (min-width: 768px) { .topbar { z-index: auto; margin-bottom: 0; } }

.topbar__inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
@media (min-width: 768px) { .topbar__inner { flex-direction: row; } }

.topbar__title { font-family: var(--font-headline); font-size: 16px; line-height: 24px; text-align: center; }
@media (min-width: 768px) { .topbar__title { font-size: 20px; line-height: 28px; } }

.topbar__clock { display: flex; align-items: center; gap: 6px; }
@media (min-width: 768px) { .topbar__clock { gap: 8px; } }

.topbar__unit {
  display: flex; width: 64px; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid hsl(var(--primary) / 0.15);
  background-color: hsl(var(--card));
  padding-top: 6px; padding-bottom: 6px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .topbar__unit { width: 70px; } }

.topbar__num {
  font-family: var(--font-headline);
  font-size: 24px; line-height: 1; font-weight: 700;
  color: hsl(var(--primary));
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) { .topbar__num { font-size: 30px; line-height: 36px; } }

.topbar__label {
  margin-top: 4px;
  font-size: 10px; line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0.025em;
  color: hsl(var(--primary) / 0.55);
}
@media (min-width: 768px) { .topbar__label { font-size: 11px; } }

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; width: 100%; background-color: hsl(var(--background)); padding-bottom: 0; }
.hero__media-mobile { display: block; }
@media (min-width: 768px) { .hero__media-mobile { display: none; } }
.hero__img-mobile { width: 100%; height: auto; object-fit: cover; object-position: bottom; }

.hero__media-desktop { display: none; }
@media (min-width: 768px) {
  .hero__media-desktop {
    display: block; position: absolute; inset: 0; height: auto;
    background-image: url("../img/hero-desktop.webp");
    background-size: cover; background-position: center; background-repeat: no-repeat;
  }
}

.hero__container { position: relative; z-index: 10; }
.hero__row { display: flex; align-items: flex-start; padding-top: 0; padding-bottom: 0; }
@media (min-width: 768px) { .hero__row { min-height: 80vh; align-items: center; } }

.hero__col { width: 100%; }
@media (min-width: 768px) { .hero__col { width: 50%; } }

.hero__card {
  display: flex; flex-direction: column; align-items: center;
  background-color: hsl(var(--card));
  padding: 24px;
  border-radius: 12px;
  margin-top: -64px;
  box-shadow: var(--shadow-2xl);
}
@media (min-width: 768px) {
  .hero__card {
    align-items: flex-start;
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
}

.hero__logo { margin-bottom: 8px; width: 160px; height: auto; }

.hero__title {
  font-family: var(--font-headline);
  font-size: 24px; line-height: 1.25; font-weight: 700;
  color: hsl(var(--primary));
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  text-align: center;
  text-wrap: balance;
}
@media (min-width: 768px) { .hero__title { font-size: 36px; line-height: 40px; text-align: left; text-wrap: wrap; } }

.hero__text {
  font-size: 16px; line-height: 24px;
  color: hsl(var(--foreground) / 0.9);
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  text-align: center;
  text-wrap: pretty;
}
@media (min-width: 768px) { .hero__text { font-size: 18px; line-height: 28px; text-align: left; text-wrap: wrap; } }

.hero__cta { margin-top: 32px; }

.hero__fade {
  position: absolute; bottom: 0; height: 128px; width: 100%;
  background-image: linear-gradient(to top, var(--lilac), rgba(244, 241, 250, 0));
}

/* --------------------------------------------------------------------------
   10. Catálogo
   -------------------------------------------------------------------------- */
.catalogo__grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 640px) { .catalogo__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 768px) { .catalogo__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .catalogo__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.catalogo__cell--sm-up { display: none; }
@media (min-width: 640px) { .catalogo__cell--sm-up { display: block; } }

.card-trigger {
  display: block; width: 100%; text-align: left;
  border-radius: 16px;
}
.card-trigger:focus { outline: none; }
.card-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--lilac), 0 0 0 4px hsl(var(--primary));
}

.card {
  border-radius: 12px;
  color: hsl(var(--card-foreground));
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid hsl(var(--primary) / 0.1);
  background-color: hsl(var(--card));
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.05), var(--shadow-sm);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.card-trigger:hover .card {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.4), var(--shadow-lg);
}
.card__media { position: relative; padding: 0; }
.card__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform 300ms var(--ease);
}
.card-trigger:hover .card__img { transform: scale(1.1); }
.card__overlay {
  position: absolute; inset: 0;
  background-color: rgb(0 0 0 / 0.2);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.card-trigger:hover .card__overlay, .card-trigger:focus-visible .card__overlay { opacity: 1; }
.card__eye { padding: 8px; background-color: rgb(255 255 255 / 0.8); border-radius: 9999px; }

.catalogo__carousel-wrap { margin-top: 32px; }
.catalogo__hint {
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; line-height: 20px; font-weight: 500;
  color: hsl(var(--primary));
}
@media (min-width: 640px) { .catalogo__carousel-wrap { display: none; } }

.catalogo__footer { margin-top: 64px; text-align: center; }
.catalogo__footer-text {
  color: hsl(var(--foreground) / 0.8);
  margin-bottom: 24px;
  padding-left: 16px; padding-right: 16px;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   11. Carrosséis
   -------------------------------------------------------------------------- */
.embla { position: relative; width: 100%; }
.embla__viewport { overflow: hidden; }
.embla__container { display: flex; }
.embla__slide { min-width: 0; flex: 0 0 auto; }

.embla--catalogo .embla__container { margin-left: -12px; will-change: transform; }
.embla--catalogo .embla__slide { flex-basis: 46%; padding-left: 12px; }

.embla--depo { max-width: 448px; margin-left: auto; margin-right: auto; }
.embla--depo .embla__container { margin-left: -16px; transition: transform 300ms var(--ease); }
.embla--depo .embla__slide { flex-basis: 100%; padding-left: 16px; }

.embla__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; width: 32px; border-radius: 9999px;
  border: 1px solid hsl(var(--input));
  background-color: rgb(255 255 255 / 0.8);
  color: hsl(var(--primary));
  transition: color 150ms var(--ease), background-color 150ms var(--ease);
}
.embla__nav:hover { background-color: #fff; }
.embla__nav:disabled { pointer-events: none; opacity: 0.5; }
.embla__nav:focus-visible { outline: none; box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }
.embla__nav--prev { left: -8px; }
.embla__nav--next { right: -8px; }
@media (min-width: 768px) {
  .embla__nav--prev { left: -24px; }
  .embla__nav--next { right: -24px; }
}

.embla__dots { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.embla__dot {
  height: 8px; width: 8px; border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.3);
  transition: width 150ms var(--ease), background-color 150ms var(--ease);
}
.embla__dot.is-active { width: 24px; background-color: hsl(var(--primary)); }
.embla__dot:focus-visible { outline: none; box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }

/* --------------------------------------------------------------------------
   12. Área exclusiva
   -------------------------------------------------------------------------- */
.area__grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .area__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.area__col-a { display: flex; flex-direction: column; justify-content: center; }
.area__col-a > * + * { margin-top: 24px; }

.area__lead {
  max-width: 600px;
  font-size: 16px; line-height: 24px;
  color: hsl(var(--primary-foreground) / 0.9);
  text-wrap: pretty;
}
@media (min-width: 768px) { .area__lead { font-size: 20px; line-height: 32.5px; } }

.area__list { display: grid; gap: 12px; font-size: 16px; line-height: 24px; }
@media (min-width: 768px) { .area__list { font-size: 18px; line-height: 28px; } }
.area__list li { display: flex; align-items: flex-start; gap: 12px; }
.area__list li span { text-wrap: pretty; }
.area__emoji { margin-top: 4px; flex-shrink: 0; }

.area__cta-desktop { display: none; }
@media (min-width: 1024px) { .area__cta-desktop { display: flex; } }

.area__col-b { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.area__col-b > * + * { margin-top: 16px; }
.area__h3 { font-family: var(--font-headline); font-size: 24px; line-height: 32px; font-weight: 700; text-align: center; text-wrap: balance; }
.area__vsl { width: 100%; max-width: 448px; scroll-margin-top: 96px; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-2xl); }
.area__cta-mobile { display: flex; margin-top: 16px; }
@media (min-width: 1024px) { .area__cta-mobile { display: none; } }
.area__note { font-size: 14px; line-height: 20px; color: hsl(var(--primary-foreground) / 0.8); text-align: center; text-wrap: pretty; }

/* slots de vídeo (players de terceiros removidos) */
.video { position: relative; width: 100%; background-color: hsl(var(--primary) / 0.15); }
.video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video--wistia { aspect-ratio: 0.565149136577708; }
.video--vertical { aspect-ratio: 9 / 16; max-width: 400px; margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   13. Depoimentos
   -------------------------------------------------------------------------- */
.depo__wrap { margin-top: 48px; }
.depo__pad { padding-left: 8px; padding-right: 8px; }
.depo__frame { overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-sm), 0 0 0 1px hsl(var(--primary) / 0.1); }

/* --------------------------------------------------------------------------
   14. Bônus
   -------------------------------------------------------------------------- */
.bonus__grid {
  margin: 48px auto 0;
  display: grid; align-items: stretch; gap: 16px;
}
@media (min-width: 640px) { .bonus__grid { max-width: 672px; gap: 20px; } }
@media (min-width: 1024px) { .bonus__grid { max-width: 1152px; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; } }

.bonus__card {
  width: 100%; max-width: 280px; margin-left: auto; margin-right: auto;
  border-radius: 16px;
  border: 1px solid hsl(var(--primary) / 0.25);
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
@media (min-width: 1024px) { .bonus__card { max-width: none; } }
.bonus__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.bonus__card--highlight { background-color: hsl(var(--primary) / 0.05); box-shadow: var(--shadow-sm), 0 0 0 1px hsl(var(--primary) / 0.2); }
.bonus__card--highlight:hover { box-shadow: var(--shadow-lg), 0 0 0 1px hsl(var(--primary) / 0.2); }

.bonus__body { padding: 20px; flex: 1 1 0%; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .bonus__body { padding: 24px; } }

.bonus__title {
  font-family: var(--font-headline); font-weight: 700;
  font-size: 18px; line-height: 28px;
  color: hsl(var(--primary));
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .bonus__title { font-size: 20px; min-height: 3.5rem; display: flex; align-items: center; justify-content: center; }
}

.bonus__media { margin: 12px auto 0; width: 176px; }
@media (min-width: 640px) { .bonus__media { width: 208px; } }
@media (min-width: 1024px) { .bonus__media { margin-top: 16px; width: 100%; } }
.bonus__media img {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; object-fit: cover;
  box-shadow: var(--shadow-sm), 0 0 0 1px hsl(var(--primary) / 0.1);
}

.bonus__price { margin-top: 12px; font-size: 14px; line-height: 20px; color: hsl(var(--foreground) / 0.8); }
@media (min-width: 1024px) { .bonus__price { margin-top: 16px; } }
.bonus__free { font-weight: 700; color: hsl(var(--primary)); }

.bonus__text { margin-top: 8px; font-size: 14px; line-height: 20px; color: hsl(var(--foreground) / 0.8); flex: 1 1 0%; text-wrap: pretty; }
@media (min-width: 640px) { .bonus__text { font-size: 16px; line-height: 24px; } }

.bonus__footer { margin-top: 32px; text-align: center; }

/* --------------------------------------------------------------------------
   15. Passo a passo
   -------------------------------------------------------------------------- */
.how__grid { margin: 48px auto 0; display: grid; max-width: 1152px; align-items: start; gap: 48px; }
@media (min-width: 1024px) { .how__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; } }

.how__steps { display: flex; flex-direction: column; gap: 32px; }
.how__step { display: flex; align-items: flex-start; gap: 24px; }
.how__rail { display: flex; flex-direction: column; align-items: center; gap: 8px; align-self: stretch; }
.how__num {
  display: flex; height: 48px; width: 48px; align-items: center; justify-content: center;
  border-radius: 9999px; background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary)); font-weight: 700; font-family: var(--font-headline);
  font-size: 20px; line-height: 28px;
  flex-shrink: 0;
}
.how__line { width: 1px; flex: 1 1 auto; min-height: 64px; background-color: hsl(var(--border) / 0.7); }
.how__head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.how__title { font-size: 20px; line-height: 28px; font-weight: 700; font-family: var(--font-headline); color: hsl(var(--primary)); }
.how__text { color: hsl(var(--foreground) / 0.8); }

.mock {
  width: 100%; overflow: hidden; border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 300ms var(--ease);
}
.mock:hover { box-shadow: var(--shadow-2xl); }
.mock__bar { background-color: #e5e7eb; padding: 8px 16px; display: flex; align-items: center; gap: 8px; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.mock__dot { height: 12px; width: 12px; border-radius: 9999px; display: block; }
.mock__dot--red { background-color: #ef4444; }
.mock__dot--yellow { background-color: #eab308; }
.mock__dot--green { background-color: #22c55e; }
.mock__screen { padding: 0; background-color: hsl(var(--background)); aspect-ratio: 16 / 9; position: relative; }
.mock__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }

.how__mock-mobile { margin-top: 16px; }
@media (min-width: 1024px) { .how__mock-mobile { display: none; } }
.how__mock-desktop { display: none; }
@media (min-width: 1024px) { .how__mock-desktop { display: flex; align-items: center; justify-content: center; border-radius: 12px; overflow: hidden; } }

.how__proof { margin: 48px auto 0; max-width: 448px; }
@media (min-width: 768px) { .how__proof { margin-top: 64px; } }
.how__proof img { width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   16. Oferta / plano
   -------------------------------------------------------------------------- */
.pricing__wrap { margin: 64px auto 0; display: flex; justify-content: center; }

.plan {
  position: relative; display: flex; flex-direction: column;
  max-width: 448px;
  scroll-margin-top: 96px;
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.2), 0 8px 10px -6px hsl(var(--primary) / 0.2), 0 0 0 1px hsl(var(--primary) / 0.4);
}
.plan__ribbon { position: absolute; top: 0; transform: translateY(-50%); width: 100%; display: flex; justify-content: center; }
.plan__badge {
  background-color: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 4px 16px; border-radius: 9999px;
  font-size: 14px; line-height: 20px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.plan__header { display: flex; flex-direction: column; padding: 24px 24px 16px; text-align: center; }
.plan__header > * + * { margin-top: 6px; }
.plan__name { font-family: var(--font-headline); font-size: 30px; line-height: 36px; font-weight: 600; letter-spacing: -0.025em; color: hsl(var(--primary)); }
.plan__sub { font-size: 14px; line-height: 20px; color: hsl(var(--muted-foreground)); }
.plan__pricebox { padding-top: 16px; }
.plan__from { font-size: 16px; line-height: 24px; font-weight: 700; margin-bottom: -8px; }
.plan__price { font-size: 60px; line-height: 60px; font-weight: 700; font-variant-numeric: tabular-nums; }
.plan__urgency {
  font-size: 14px; line-height: 20px; color: hsl(var(--foreground) / 0.8);
  text-align: center; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px;
}
.plan__body { padding: 0 24px 24px; display: grid; gap: 16px; flex: 1 1 0%; }
.plan__list-title { font-weight: 700; font-size: 18px; line-height: 28px; text-align: center; }
.plan__list { display: grid; gap: 12px; }
.plan__list li {
  display: flex; align-items: flex-start; gap: 12px;
  border-bottom: 1px solid hsl(var(--primary) / 0.1);
  padding-bottom: 12px;
}
.plan__list li:last-child { border-bottom-width: 0; padding-bottom: 0; }
.plan__list li > span:last-child { color: hsl(var(--foreground) / 0.9); }
.plan__emoji { font-size: 20px; line-height: 28px; margin-top: 1px; }
.plan__footer { display: flex; align-items: center; padding: 0 24px 24px; flex-direction: column; gap: 8px; }
.plan__cta { padding-top: 8px; padding-bottom: 8px; font-size: 18px; line-height: 28px; }
.plan__payments { margin-top: 16px; }

/* --------------------------------------------------------------------------
   17. Garantia
   -------------------------------------------------------------------------- */
.garantia__wrap { max-width: 768px; margin-left: auto; margin-right: auto; }
.garantia__box {
  border-radius: 16px;
  border: 2px dashed hsl(var(--accent) / 0.6);
  background-color: hsl(var(--accent) / 0.1);
  padding: 32px; text-align: center;
}
.garantia__seal { margin: 0 auto 24px; height: auto; width: 144px; }
@media (min-width: 768px) { .garantia__seal { width: 176px; } }
.garantia__text { color: hsl(var(--foreground) / 0.8); }
@media (min-width: 768px) { .garantia__text { font-size: 18px; line-height: 28px; } }

/* --------------------------------------------------------------------------
   18. Sobre a expert
   -------------------------------------------------------------------------- */
.about__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .about__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; } }
.about__col { display: flex; flex-direction: column; justify-content: center; }
.about__col > * + * { margin-top: 16px; }
.about__head > * + * { margin-top: 8px; }
.about__lead { max-width: 600px; font-size: 16px; line-height: 24px; color: hsl(var(--foreground) / 0.9); text-wrap: pretty; }
@media (min-width: 768px) { .about__lead { font-size: 20px; line-height: 32.5px; } }
@media (min-width: 1024px) { .about__lead { font-size: 16px; line-height: 26px; } }
@media (min-width: 1280px) { .about__lead { font-size: 20px; line-height: 32.5px; } }
.about__card { border-radius: 16px; border: 1px solid hsl(var(--primary) / 0.1); background-color: hsl(var(--card)); color: hsl(var(--card-foreground)); box-shadow: var(--shadow-sm); }
.about__card-body { padding: 24px; display: grid; gap: 16px; }
.about__item { display: flex; align-items: flex-start; gap: 16px; }
.about__icon { flex-shrink: 0; margin-top: 4px; }
.about__item-title { font-weight: 700; }
.about__item-text { color: hsl(var(--foreground) / 0.8); }
.about__photo { display: flex; align-items: center; justify-content: center; }
.about__photo img { width: 100%; max-width: 400px; border-radius: 9999px; object-fit: cover; box-shadow: var(--shadow-2xl); aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------------------
   19. FAQ (accordion)
   -------------------------------------------------------------------------- */
.faq__wrap { margin: 48px auto 0; max-width: 768px; }
.accordion > * + * { margin-top: 12px; }
.accordion__item {
  border-radius: 16px;
  border: 1px solid hsl(var(--primary) / 0.15);
  background-color: hsl(var(--card));
  padding-left: 20px; padding-right: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 150ms var(--ease);
}
.accordion__item:hover { box-shadow: var(--shadow-md); }
.accordion__item[data-state="open"] { box-shadow: var(--shadow-sm), 0 0 0 1px hsl(var(--primary) / 0.2); }
.accordion__heading { display: flex; }
.accordion__trigger {
  display: flex; flex: 1 1 0%; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  text-align: left;
  font-size: 16px; line-height: 24px; font-weight: 600;
  color: hsl(var(--foreground));
  transition: all 150ms var(--ease);
}
@media (min-width: 768px) { .accordion__trigger { font-size: 18px; line-height: 28px; } }
.accordion__trigger:focus-visible { outline: none; box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }
.accordion__chevron { transition: transform 200ms var(--ease); }
.accordion__trigger[data-state="open"] .accordion__chevron { transform: rotate(180deg); color: hsl(var(--accent)); }
.accordion__content { overflow: hidden; font-size: 14px; }
.accordion__content[data-state="open"] { animation: accordion-down 0.2s ease-out; }
.accordion__content[data-state="closing"] { animation: accordion-up 0.2s ease-out; }
.accordion__text { padding-bottom: 16px; padding-top: 0; font-size: 16px; line-height: 1.625; color: hsl(var(--foreground) / 0.8); }
@keyframes accordion-down { 0% { height: 0; } to { height: var(--accordion-content-height); } }
@keyframes accordion-up { 0% { height: var(--accordion-content-height); } to { height: 0; } }

.faq__footer { margin-top: 48px; text-align: center; }
.faq__footer-text { margin-bottom: 24px; color: hsl(var(--foreground) / 0.8); text-wrap: pretty; }

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.footer { width: 100%; background-color: var(--cream); padding-top: 48px; padding-bottom: 48px; }
.footer__grid { display: grid; max-width: 896px; grid-template-columns: minmax(0, 1fr); gap: 32px; text-align: center; }
.footer__cta-col, .footer__seal-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer__text { max-width: 600px; color: hsl(var(--foreground) / 0.8); }
@media (min-width: 768px) { .footer__text { font-size: 20px; line-height: 28px; } }
.footer__seal { margin-left: auto; margin-right: auto; }
.footer__copy { margin-top: 16px; font-size: 14px; line-height: 20px; color: hsl(var(--foreground) / 0.6); }

/* --------------------------------------------------------------------------
   21. Modal (Dialog)
   -------------------------------------------------------------------------- */
.dialog { position: fixed; inset: 0; z-index: 50; }
.dialog__overlay {
  position: fixed; inset: 0; z-index: 50;
  background-color: rgb(0 0 0 / 0.8);
  animation: fade-in 200ms var(--ease);
}
.dialog[data-closing] .dialog__overlay { animation: fade-out 200ms var(--ease) forwards; }
.dialog__content {
  position: fixed; left: 50%; top: 50%; z-index: 50;
  display: grid; gap: 16px;
  width: calc(100% - 32px); max-width: 512px;
  transform: translate(-50%, -50%);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: dialog-in 200ms var(--ease);
}
@media (min-width: 640px) { .dialog__content { border-radius: 12px; max-width: 625px; } }
.dialog[data-closing] .dialog__content { animation: dialog-out 200ms var(--ease) forwards; }
.dialog__content:focus { outline: none; }
.dialog__header { display: flex; flex-direction: column; text-align: center; }
@media (min-width: 640px) { .dialog__header { text-align: left; } }
.dialog__header > * + * { margin-top: 6px; }
.dialog__title { font-family: var(--font-headline); font-size: 24px; line-height: 32px; font-weight: 600; letter-spacing: -0.025em; color: hsl(var(--primary)); }
.dialog__desc { font-size: 14px; line-height: 20px; color: hsl(var(--muted-foreground)); }
.dialog__media { padding-top: 16px; padding-bottom: 16px; }
.dialog__media img { border-radius: 12px; object-fit: cover; aspect-ratio: 1 / 1; width: 100%; }
.dialog__close {
  position: absolute; right: 16px; top: 16px;
  border-radius: 8px; opacity: 0.7;
  transition: opacity 150ms var(--ease);
}
.dialog__close:hover { opacity: 1; }
.dialog__close:focus-visible { outline: none; box-shadow: 0 0 0 2px hsl(var(--background)), 0 0 0 4px hsl(var(--ring)); }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes dialog-in {
  from { opacity: 0; transform: translate(-50%, -48%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes dialog-out {
  from { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 0; transform: translate(-50%, -48%) scale(0.95); }
}
body.is-locked { overflow: hidden; }

/* --------------------------------------------------------------------------
   22. Ondas divisórias
   -------------------------------------------------------------------------- */
.wave { line-height: 0; margin-top: -1px; }
.wave--from-lilac { background-color: var(--lilac); }
.wave--from-cream { background-color: var(--cream); }
.wave--from-primary { background-color: hsl(var(--primary)); }
.wave__svg { display: block; height: 32px; width: 100%; }
@media (min-width: 768px) { .wave__svg { height: 56px; } }
.wave__svg--fill-primary { fill: hsl(var(--primary)); }
.wave__svg--fill-lilac { fill: var(--lilac); }
.wave__svg--fill-cream { fill: var(--cream); }

/* --------------------------------------------------------------------------
   23. Reveal on scroll (idêntico ao original: scroll-driven nativo)
   -------------------------------------------------------------------------- */
@keyframes reveal-in {
  0% { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal-on-scroll {
  animation: reveal-in linear both;
  animation-timeline: view();
  animation-range: entry 0 entry 12%;
}
/* Fallback só para navegadores SEM scroll-driven animations (o original fica estático neles). */
@supports not (animation-timeline: view()) {
  .js .reveal-on-scroll { animation: none; opacity: 0; transform: translateY(28px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
  .js .reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   24. prefers-reduced-motion (ACRÉSCIMO — não existe no original)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html.scroll-smooth { scroll-behavior: auto; }
  .reveal-on-scroll { animation: none !important; opacity: 1 !important; transform: none !important; }
  .spin-slow, .btn--pulse { animation: none !important; }
  .embla--catalogo .embla__container { transition: none; }
  .embla--depo .embla__container { transition: none; }
  .dialog__overlay, .dialog__content { animation: none !important; }
  .accordion__content { animation: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
