/* ============================================================
   Sobremesas no Pote — estilos
   NOTA: por enquanto apenas DESKTOP (mobile será feito depois)
   ============================================================ */

:root {
  /* paleta */
  --pink:        #B4284C;   /* CTA / destaque forte */
  --pink-strong: #9C2243;
  --pink-title:  #B4284C;   /* título principal */
  --pink-soft:   #FCE4EC;
  --ink:         #3B2A30;   /* texto escuro quente */
  --ink-soft:    #7A6A6F;   /* texto secundário */
  --bg-1:        #FFF6F8;
  --bg-2:        #FDEBF0;

  --radius:      18px;
  --shadow-cta:  0 14px 30px -10px rgba(180, 40, 76, .55);
  --shadow-soft: 0 30px 60px -25px rgba(120, 30, 60, .35);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }

/* ============================================================
   TOPBAR (apenas mobile)
   ============================================================ */
.topbar {
  display: none;
  text-align: center;
  margin-bottom: 8px;
}
.topbar__text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.5px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 100% 0%, var(--bg-2) 0%, var(--bg-1) 45%, #ffffff 100%);
}

@media (min-width: 1024px) {
  .hero {
    background-image: url("../assets/herodesktop.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* brilho decorativo sutil atrás do vídeo */
.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 55%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(229,34,110,.10) 0%, rgba(229,34,110,0) 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  max-height: 100dvh;
  margin: 0 auto;
  padding: 32px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}

/* ---------- LADO ESQUERDO ---------- */
.hero__content { max-width: 560px; }

.badge-course {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  background: var(--pink);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(229,34,110,.6);
}

.hero__title {
  font-family: var(--font-head);
  margin-top: 16px;
  line-height: 1.02;
}
.hero__title-top {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: var(--ink);
}
.hero__title-main {
  display: block;
  font-size: 54px;
  font-weight: 800;
  color: var(--pink-title);
  letter-spacing: -1px;
  margin-top: 2px;
}

.hero__subtitle {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---------- FEATURES ---------- */
.features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 22px;
  margin-top: 18px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.feature__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--pink-soft);
  color: var(--pink);
}
.feature__icon svg { width: 17px; height: 17px; }
.feature__text {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.feature__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1px;
}

/* ---------- PREÇO (hero) ---------- */
.hero__price {
  margin-top: 20px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 8px;
}
.hero__price s { opacity: .75; }
.hero__price strong {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.hero__price span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- CTA ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  width: 100%;
  max-width: 470px;
  padding: 17px 32px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #C8385E 0%, var(--pink) 100%);
  border-radius: 14px;
  box-shadow: var(--shadow-cta);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -10px rgba(229,34,110,.65);
  filter: brightness(1.03);
}
.cta:active { transform: translateY(0); }
.cta__arrow {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: transform .2s ease;
}
.cta:hover .cta__arrow { transform: translateX(3px); }
.cta__arrow svg { width: 15px; height: 15px; }

/* ---------- TRUST ---------- */
.trust { margin-top: 14px; }
.trust img {
  width: 320px;
  height: auto;
  opacity: .95;
}

/* ---------- GARANTIA ---------- */
.guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.guarantee__shield {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--pink);
}
.guarantee__shield svg { width: 32px; height: 32px; }
.guarantee__text {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.guarantee__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .3px;
}

/* ---------- LADO DIREITO / VÍDEO ---------- */
.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}
.media-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(180, 40, 76, .68),
    0 0 12px 3px rgba(180, 40, 76, .52),
    0 0 28px 6px rgba(180, 40, 76, .24);
  background: var(--pink-soft);
}
.media-frame__video {
  width: 100%;
  height: calc(100% + 2px);
  margin-top: -1px;
  object-fit: cover;
}
.media-frame__sound {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 8px 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(37,20,26,.72);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.media-frame__sound svg { width: 17px; height: 17px; }
.media-frame__sound .sound-wave { display: none; }
.media-frame__sound.is-unmuted .sound-wave { display: block; }
.media-frame__sound.is-unmuted .sound-muted { display: none; }
.media-frame__sound:focus-visible {
  outline: 3px solid rgba(180,40,76,.4);
  outline-offset: 3px;
}

/* selo redondo "receitas testadas e aprovadas" */
.stamp {
  position: absolute;
  top: -26px;
  right: 4px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: linear-gradient(150deg, #F04E8E 0%, var(--pink) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  box-shadow: 0 12px 26px -8px rgba(229,34,110,.6);
  border: 3px dashed rgba(255,255,255,.55);
  transform: rotate(-8deg);
}
.stamp__heart { width: 22px; height: 22px; }
.stamp__text {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

/* ============================================================
   FAIXA DE BENEFÍCIOS (strip fino)
   ============================================================ */
.strip {
  background: var(--bg-2);
  padding: 18px 56px;
}
.strip__list {
  list-style: none;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-item__icon {
  flex: 0 0 auto;
  color: var(--pink);
}
.strip-item__icon svg {
  width: 30px;
  height: 30px;
}
.strip-item__text {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--pink-strong);
}
.strip-item__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1px;
}

/* ============================================================
   VITRINE DE SOBREMESAS
   ============================================================ */
.showcase {
  background: var(--bg-1);
  padding: 40px 56px 36px;
}
.showcase__title {
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 30px;
}
.showcase__title span { color: var(--pink); }
.showcase__heart {
  width: 22px;
  height: 22px;
  color: var(--pink);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.showcase__grid {
  list-style: none;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.dessert {
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px 14px;
  box-shadow: 0 12px 26px -18px rgba(120, 30, 60, .45);
  transition: transform .22s ease, box-shadow .22s ease;
}
.dessert:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px -16px rgba(229, 34, 110, .4);
}
.dessert__img {
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
}
.dessert__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dessert__name {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink-soft);
}
.dessert--desktop-extra { display: none; }

.showcase__footer {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

@media (min-width: 1024px) {
  .showcase {
    height: 100svh;
    max-height: 100svh;
    padding-top: clamp(20px, 4svh, 40px);
    padding-bottom: clamp(18px, 3.5svh, 36px);
    display: flex;
    flex-direction: column;
  }
  .showcase__title {
    flex: 0 0 auto;
    margin-bottom: clamp(16px, 2.5svh, 30px);
  }
  .showcase__grid {
    flex: 1;
    min-height: 0;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .dessert--desktop-extra { display: flex; }
  .dessert {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .dessert__img {
    flex: 1;
    min-height: 0;
    aspect-ratio: auto;
  }
  .dessert__name {
    flex: 0 0 auto;
    margin-top: 8px;
  }
  .showcase__footer {
    flex: 0 0 auto;
    margin-top: clamp(14px, 2.5svh, 28px);
  }
}

/* ============================================================
   CONTEÚDO DO CURSO
   ============================================================ */
.content {
  background: #fff;
  padding: 48px 56px 56px;
}
.content__title {
  text-align: center;
  margin-bottom: 34px;
}
.content__title span {
  position: relative;
  font-family: var(--font-head);
  font-size: 27px;
  font-weight: 700;
  color: var(--pink);
  padding: 0 18px;
}
/* tracinhos decorativos nas laterais do título */
.content__title span::before,
.content__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: var(--pink-soft);
}
.content__title span::before { right: 100%; }
.content__title span::after  { left: 100%; }

.content__cols {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.content__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- módulo (accordion) ---- */
.module {
  position: relative;
  background: var(--pink-soft);
  border-radius: 14px;
  transition: box-shadow .2s ease;
}
.module[open] {
  z-index: 20;                 /* fica acima dos módulos vizinhos */
  box-shadow: 0 14px 28px -18px rgba(180, 40, 76, .5);
}
.module__head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
}
.module__head::-webkit-details-marker { display: none; }

.module__icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--pink);
}
.module__icon svg { width: 34px; height: 34px; }

.module__label {
  flex: 1;
  font-size: 12px;
  line-height: 1.3;
  color: var(--ink-soft);
}
.module__label strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1px;
}

.module__chevron {
  flex: 0 0 auto;
  color: var(--pink);
  display: grid;
  place-items: center;
  transition: transform .25s ease;
}
.module__chevron svg { width: 18px; height: 18px; }
.module[open] .module__chevron { transform: rotate(180deg); }

.module__badge {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--pink);
  background: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* painel das aulas: overlay flutuante — NÃO empurra o layout */
.module__panel {
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--pink-soft);
  border-radius: 14px;
  box-shadow: 0 22px 44px -18px rgba(120, 30, 60, .5);
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.module[open] .module__panel { animation: panel-in .18s ease-out; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lessons {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lessons li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 9px;
  border-bottom: 1px solid var(--pink-soft);
}
.lessons li:last-child { border-bottom: 0; padding-bottom: 0; }
.lessons__num {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 2px 8px;
  border-radius: 6px;
  min-width: 52px;
  text-align: center;
}

/* ============================================================
   APOSTILA EM PDF
   ============================================================ */
.ebook {
  background: var(--bg-1);
  padding: 36px 48px 40px;
}
.ebook__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 220px;
  column-gap: 28px;
  align-items: center;
}

/* ---- mockup do livro ---- */
.ebook__book {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ebook__book img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(16px 22px 32px rgba(120, 30, 60, .3));
}

/* ---- conteúdo ---- */
.ebook__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}
.ebook__sub {
  font-size: clamp(12px, 1.2vw, 13.5px);
  color: var(--ink-soft);
  margin-top: 2px;
  margin-bottom: 16px;
}

.cat-panel {
  background: rgba(252, 228, 236, .55);
  border-radius: 14px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 14px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px 16px;
  padding: 0 2px;
}

.cat__title {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 7px;
}
.cat__icon { color: var(--pink); }
.cat__icon svg { width: 16px; height: 16px; }

.cat__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cat__list li {
  position: relative;
  padding-left: 13px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--ink);
}
.cat__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---- cards de benefícios ---- */
.ebook__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ecard {
  background: #fff;
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 26px -20px rgba(120,30,60,.5);
}
.ecard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 0 9px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
}
.ecard__icon svg { width: 20px; height: 20px; display: block; }
.ecard strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.ecard > span:last-child {
  display: block;
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 1px;
}

/* ============================================================
   TRANSPARÊNCIA TOTAL
   ============================================================ */
.transp {
  --red:   #E8324B;
  --green: #2BB96A;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--bg-2);
  padding: 26px 56px 22px;     /* conteúdo encostado no topo */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.transp__title {
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 16px;
}
.transp__heart {
  width: 17px;
  height: 17px;
  color: var(--pink);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.transp__cols {
  width: 100%;
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.promise {
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.04);
}
.promise--no  { background: #FFF4F6; }
.promise--yes { background: #F1FBF5; }

.promise__head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.promise__badge {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #fff;
}
.promise__badge svg { width: 19px; height: 19px; }
.promise__badge--no  { background: var(--red); }
.promise__badge--yes { background: var(--green); }

.promise__title {
  font-family: var(--font-head);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--ink);
}
.t-red   { color: var(--red); }
.t-green { color: var(--green); }

.promise__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promise__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(11.5px, 1.1vw, 13px);
  color: var(--ink);
}
.promise__mark {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.promise__mark svg { width: 10px; height: 10px; }
.promise__mark--no  { color: var(--red);   background: rgba(232,50,75,.12); }
.promise__mark--yes { color: var(--green); background: rgba(43,185,106,.12); }

/* ---- marquee de provas sociais ---- */
.marquee {
  width: 100%;
  flex: 1 1 auto;              /* cresce para ocupar o espaço livre */
  margin-top: 14px;
  display: flex;
  align-items: stretch;       /* cards preenchem toda a altura da área */
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  flex: 0 0 auto;             /* não encolhe dentro do flex */
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}
/* pausa apenas em dispositivos com mouse; no toque o hover pode ficar "preso" */
@media (hover: hover) and (pointer: fine) {
  .marquee:hover .marquee__track { animation-play-state: paused; }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.proof {
  flex: 0 0 auto;
  width: 270px;
  margin: 0;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 26px -20px rgba(120,30,60,.5);
  display: flex;
  flex-direction: column;
  justify-content: center;    /* conteúdo centralizado no card alto */
  gap: 9px;
}
.proof blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.proof__stars {
  display: flex;
  gap: 3px;
}
.proof__stars svg {
  width: 17px;
  height: 17px;
  fill: #FFB400;
}
.proof figcaption {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
}

/* ---- CTA + valor + compra segura ---- */
.transp__cta {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offer {
  text-align: center;
  margin-bottom: 10px;
}
.offer__from {
  font-size: 11.5px;
  color: var(--ink-soft);
}
.offer__from s { opacity: .8; }
.offer__price {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 1px;
}
.offer__price strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--pink);
}
.offer__cash {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 1px;
}

/* botão em duas linhas e compacto */
.transp__cta .cta {
  margin-top: 0;
  width: auto;
  max-width: none;
  padding: 11px 26px;
  font-size: 14px;
}
.cta--stack { align-items: center; }
.cta__txt {
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.trust--center {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.trust--center img { width: 175px; }

/* ============================================================
   EXPERT / BIA NOCETE
   ============================================================ */
.expert {
  background: var(--bg-1);
  padding: 56px 56px 64px;
}
.expert__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
}

.expert__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  box-shadow:
    0 0 0 2px rgba(180, 40, 76, .68),
    0 0 12px 3px rgba(180, 40, 76, .52),
    0 0 28px 6px rgba(180, 40, 76, .24);
}
.expert__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.expert__panel {
  background: #fff;
  border: 1px solid rgba(229, 34, 110, .10);
  border-radius: 20px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.expert__hi {
  font-size: 15px;
  color: var(--ink-soft);
}
.expert__name {
  font-family: "Dancing Script", cursive;
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--pink);
  margin: 2px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.expert__name svg {
  width: 26px;
  height: 26px;
  color: var(--pink);
}
.expert__bio p {
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 10px;
  max-width: 560px;
}
.expert__bio p strong { color: var(--ink); font-weight: 600; }
.expert__quote {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink) !important;
  font-size: clamp(14px, 1.4vw, 16px) !important;
  margin-top: 6px;
  margin-bottom: 0 !important;
}

.expert__stats {
  list-style: none;
  display: flex;
  gap: 12px;
}
.expert__stats li {
  width: 108px;
  background: var(--pink-soft);
  border-radius: 14px;
  padding: 18px 10px;
  text-align: center;
}
.expert__stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--pink);
}
.expert__stats span {
  display: block;
  font-size: 11.5px;
  line-height: 1.3;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: #fff;
  padding: 64px 56px 72px;
}
.faq__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}
.faq__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pink);
  background: var(--pink-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.faq__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}
.faq__lead {
  font-size: clamp(13.5px, 1.3vw, 15px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 10px;
  text-wrap: pretty;
}

.faq__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  align-items: start;
}
.faq__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--pink-soft);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-item:hover { border-color: rgba(180, 40, 76, .22); }
.faq-item[open] {
  border-color: rgba(180, 40, 76, .28);
  box-shadow: 0 18px 36px -24px rgba(180, 40, 76, .55);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-size: clamp(13.5px, 1.35vw, 15.5px);
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq-item__icon svg { width: 15px; height: 15px; }
.faq-item[open] .faq-item__icon {
  transform: rotate(135deg);
  background: var(--pink);
  color: #fff;
}

.faq-item__body {
  padding: 0 18px 16px;
}
.faq-item__body p {
  font-size: clamp(13px, 1.25vw, 14.5px);
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   RESUMO DA COMPRA
   ============================================================ */
.summary {
  height: 100dvh;
  max-height: 100dvh;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--pink-soft) 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.summary__title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 18px;
}
.summary__title svg {
  width: 20px;
  height: 20px;
  color: var(--pink);
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.summary__card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 30px 60px -30px rgba(120, 30, 60, .4);
}

.summary__items {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.summary__items li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--pink-soft);
}
.summary__items li:first-child { padding-top: 0; }

.summary__check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(43, 185, 106, .12);
  color: #2BB96A;
}
.summary__check svg { width: 13px; height: 13px; }

.summary__name {
  flex: 1;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink-soft);
}
.summary__name strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1px;
}

.summary__val {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.summary__val s { opacity: .8; }
.summary__val--free { color: #2BB96A; }

.summary__total {
  text-align: center;
  margin: 16px 0 14px;
}
.summary__total-label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
}
.summary__total-price {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 2px;
}
.summary__total-price strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--pink);
}
.summary__total-cash {
  display: block;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.cta--full {
  margin-top: 0;
  width: 100%;
  max-width: none;
}

.summary__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.summary__guarantee .guarantee__shield { color: #2BB96A; }
.summary__guarantee p {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 340px;
}
.summary__guarantee strong { color: var(--ink); }

.summary .trust--center { margin-top: 14px; }
.summary .trust--center img { width: 200px; }

/* ============================================================
   GARANTIA 1 ANO
   ============================================================ */
.warranty {
  min-height: 50dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 140% at 50% 0%, #EC5078 0%, #D63A5E 45%, var(--pink) 100%);
  padding: 48px 24px;
}
.warranty__inner {
  max-width: 760px;
  margin: 0 auto;
}
.warranty__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.warranty__script {
  font-family: "Dancing Script", cursive;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-top: 4px;
}
.warranty__desc {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 600px;
  margin: 22px auto 0;
}
.warranty__desc strong { font-weight: 700; color: #fff; }
.warranty__limited {
  font-family: var(--font-head);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,.85);
  margin-top: 28px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: var(--bg-2);
  padding: 64px 40px 80px;
}
.final-cta__panel {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
  background:
    radial-gradient(120% 130% at 0% 0%, #E2547A 0%, #C8385E 45%, var(--pink-strong) 100%);
  box-shadow: 0 44px 80px -42px rgba(180, 40, 76, .7);
}
/* brilho decorativo dentro do painel */
.final-cta__panel::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 38%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  padding: 52px 48px;
  color: #fff;
}
.final-cta__script {
  font-family: "Dancing Script", cursive;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.final-cta__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  margin-top: 4px;
  text-wrap: balance;
}
.final-cta__title span { color: #FFE08A; }   /* destaque dourado quente */
.final-cta__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 440px;
  margin-top: 14px;
  text-wrap: pretty;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}
.final-cta__price {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 12px 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
}
.final-cta__from { font-size: 12px; color: rgba(255,255,255,.85); }
.final-cta__from s { opacity: .8; }
.final-cta__now {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.final-cta__inst { font-size: 11.5px; color: rgba(255,255,255,.85); margin-top: 2px; }

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--font-head);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  letter-spacing: .4px;
  text-decoration: none;
  color: var(--pink-strong);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.final-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -16px rgba(0,0,0,.45);
}
.final-cta__btn:active { transform: translateY(0); }
.final-cta__arrow {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pink-soft);
  transition: transform .2s ease;
}
.final-cta__btn:hover .final-cta__arrow { transform: translateX(3px); }
.final-cta__arrow svg { width: 14px; height: 14px; }

.final-cta__trust {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.final-cta__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.final-cta__trust svg { width: 15px; height: 15px; color: #FFE08A; }

/* imagem lateral */
.final-cta__media {
  position: relative;
  min-height: 100%;
}
.final-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* fade do cereja sobre a imagem para fundir com o texto */
.final-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200,56,94,.55) 0%, rgba(200,56,94,0) 38%);
  pointer-events: none;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  --fg: rgba(255,255,255,.82);
  background: var(--pink);
  color: var(--fg);
  padding: 56px 56px 0;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo {
  font-family: "Dancing Script", cursive;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.footer__tagline {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  max-width: 360px;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.footer__social a:hover {
  background: rgba(255,255,255,.24);
  border-color: #fff;
  transform: translateY(-3px);
}
.footer__social svg { width: 19px; height: 19px; }

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer__contact,
.footer__link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .2s ease;
  width: fit-content;
}
.footer__contact svg { width: 17px; height: 17px; flex: 0 0 auto; color: #fff; }
.footer__contact:hover,
.footer__link:hover { color: #fff; }

.footer__disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}

.footer__bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
}
.footer__bottom a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s ease;
}
.footer__bottom a:hover { color: #fff; }

/* respeitar usuários que pedem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .cta, .cta__arrow { transition: none; }
  .final-cta__btn, .final-cta__arrow { transition: none; }
  .footer__social a { transition: none; }
  .dessert { transition: none; }
  .module, .module__chevron { transition: none; }
  .module[open] .module__panel { animation: none; }
  .faq-item, .faq-item__icon { transition: none; }
  .marquee__track { animation: none; }
  .seal__ring { animation: none; }
}

.whatsapp-float {
  display: none;
}

/* ============================================================
   RESPONSIVO — TABLET (≤1023px)
   ============================================================ */
@media (max-width: 1023px) {
  /* hero */
  .hero { height: auto; min-height: 100dvh; max-height: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 40px 48px;
  }
  .hero__content { max-width: 640px; }
  .media-frame { max-width: 100%; }

  /* faixa de benefícios */
  .strip__list { flex-wrap: wrap; justify-content: center; gap: 18px 28px; }

  /* vitrine 8 -> 4 */
  .showcase__grid { grid-template-columns: repeat(4, 1fr); }

  /* conteúdo 3 -> 2 */
  .content__cols { grid-template-columns: repeat(2, 1fr); }

  /* apostila: empilha */
  .ebook__inner { grid-template-columns: 1fr; gap: 32px; justify-items: center; }
  .ebook__content { width: 100%; }
  .ebook__cards { grid-template-columns: repeat(4, 1fr); width: 100%; max-width: 560px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ebook__book img { max-width: 230px; }

  /* transparência */
  .transp { height: auto; min-height: 100dvh; max-height: none; }

  /* expert: empilha */
  .expert__inner { grid-template-columns: 1fr; gap: 30px; justify-items: center; }
  .expert__photo { max-width: 360px; }
  .expert__panel { grid-template-columns: 1fr; gap: 24px; }

  /* resumo */
  .summary { height: auto; min-height: 100dvh; max-height: none; }
}

/* ============================================================
   RESPONSIVO — MOBILE (≤767px)
   ============================================================ */
/* ============================================================
   RESPONSIVO — TABLET EXCLUSIVO (768px–1023px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  /* hero */
  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero__inner {
    max-height: none;
    padding: 44px 36px 52px;
    gap: 30px;
  }
  .hero__content {
    width: 100%;
    max-width: none;
  }
  .hero__title { max-width: 680px; }
  .hero__title-top { font-size: clamp(25px, 3.7vw, 32px); }
  .hero__title-main { font-size: clamp(43px, 6.4vw, 56px); }
  .hero__subtitle { font-size: 15px; }
  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .feature { gap: 7px; }
  .feature__text strong { font-size: 12px; }
  .hero__price { margin-top: 18px; }
  .hero__content > .cta { max-width: 520px; }
  .hero__media {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .stamp {
    width: 104px;
    height: 104px;
    top: -20px;
    right: -8px;
  }

  /* faixa de benefícios */
  .strip { padding: 18px 32px; }
  .strip__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 32px;
  }
  .strip-item { justify-content: center; }

  /* espaçamento geral das seções */
  .showcase,
  .content,
  .faq { padding-left: 32px; padding-right: 32px; }

  /* vitrine */
  .showcase { padding-top: 48px; padding-bottom: 44px; }
  .showcase__grid { gap: 14px; }
  .dessert { padding: 9px 9px 12px; }

  /* conteúdo do curso */
  .content { padding-top: 52px; padding-bottom: 56px; }
  .content__cols { gap: 18px; }
  .content__col:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  /* apostila */
  .ebook { padding: 44px 32px 48px; }
  .ebook__inner {
    grid-template-columns: 180px minmax(0, 1fr);
    column-gap: 26px;
    row-gap: 28px;
    align-items: start;
  }
  .ebook__book {
    position: sticky;
    top: 24px;
  }
  .ebook__book img { max-width: 180px; }
  .ebook__content { min-width: 0; }
  .cat-panel { gap: 12px; padding: 14px; }
  .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ebook__cards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }

  /* transparência e depoimentos */
  .transp {
    min-height: auto;
    padding: 48px 32px 42px;
  }
  .transp__cols { max-width: 760px; }
  .marquee {
    flex: none;
    min-height: 250px;
    margin-top: 22px;
  }
  .transp__cta { margin-top: 24px; }

  /* expert */
  .expert { padding: 56px 32px 64px; }
  .expert__inner {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    justify-items: stretch;
  }
  .expert__photo {
    width: 100%;
    max-width: none;
  }
  .expert__panel {
    min-width: 0;
    padding: 26px;
  }
  .expert__stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .expert__stats li {
    width: calc(33.333% - 8px);
    min-width: 92px;
  }

  /* resumo, garantia e FAQ */
  .summary {
    min-height: auto;
    padding: 60px 32px;
  }
  .warranty { min-height: 42dvh; padding: 56px 32px; }
  .faq { padding-top: 56px; padding-bottom: 64px; }
  .faq__grid { gap: 14px 18px; }
  .faq-item summary { padding: 15px 16px; }

  /* CTA final */
  .final-cta { padding: 56px 32px 68px; }
  .final-cta__panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  }
  .final-cta__content { padding: 40px 34px; }
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta__price { align-items: center; text-align: center; }
  .final-cta__btn { width: 100%; }

  /* rodapé */
  .footer { padding: 50px 32px 0; }
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 48px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__tagline { max-width: 560px; }
}

@media (max-width: 767px) {
  .hero {
    align-items: flex-start;
    min-height: 100svh;
    background-image: url("../assets/heromobile.webp");
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #FDE4D4;
  }

  .whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: #fff;
    background: var(--pink);
    box-shadow: 0 10px 26px rgba(104, 18, 48, .38);
    transition: transform .2s ease, background-color .2s ease;
  }
  .whatsapp-float:active {
    transform: scale(.94);
    background: var(--pink-strong);
  }
  .whatsapp-float:focus-visible {
    outline: 3px solid rgba(180, 40, 76, .35);
    outline-offset: 3px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
  }

  /* ---- HERO ---- */
  .hero__inner {
    display: flex;
    flex-direction: column;
    max-height: none;
    padding: 34px 20px clamp(205px, 55vw, 255px);
    gap: 12px;
  }
  .hero__inner > *,
  .features,
  .feature,
  .feature__text { min-width: 0; }
  .hero__inner > * {
    width: 100%;
    max-width: 100%;
  }
  .topbar { display: block; order: 1; margin-bottom: 0; }
  .hero__content { display: contents; }
  .badge-course { display: none; }              /* "CURSO ONLINE" só no desktop */
  .hero__title { order: 2; margin-top: 10px; text-align: center; line-height: 1.15; }
  .hero__title-top { font-size: clamp(14px, 4vw, 18px); display: block; color: var(--ink); font-weight: 600; }
  .hero__title-main { font-size: clamp(20px, 6vw, 28px); display: block; color: var(--pink-title); font-weight: 800; margin-top: 2px; }
  .hero__subtitle { order: 3; font-size: 13px; margin-top: 4px; text-align: center; }
  .hero__media { order: 4; margin-top: 0; }   /* vídeo abaixo do subtítulo */
  .features {
    order: 5;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 4px;
  }
  .feature { gap: 7px; }
  .feature__icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
  }
  .feature__icon svg {
    width: 14px;
    height: 14px;
  }
  .feature__text {
    font-size: 10px;
    line-height: 1.3;
  }
  .feature__text strong {
    font-size: 11px;
    margin-bottom: 0;
  }
  .hero__price {
    order: 6;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    text-align: center;
  }
  .hero__price span {
    flex-basis: 100%;
    text-align: center;
  }
  .cta { order: 7; width: 100%; max-width: none; margin-top: 8px; }
  .trust { display: none; }
  .guarantee { display: none; }
  .stamp { display: none; }                     /* selo só no desktop */

  /* ---- FAIXA ---- */
  .strip { display: none; }

  /* ---- VITRINE 4 -> 2 ---- */
  .showcase { padding: 40px 20px; }
  .showcase__title { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 22px; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dessert--desktop-extra { display: flex; }
  .dessert {
    display: flex;
    flex-direction: column;
  }
  .dessert__img {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  /* ---- CONTEÚDO (módulos) — ocupa ao menos uma tela e cresce se necessário ---- */
  .content {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
  }
  .content__title { margin-bottom: 18px; }
  .content__title span {
    font-size: 16px;
    padding: 0 14px;
    white-space: nowrap;
  }
  .content__title span::before,
  .content__title span::after { width: 30px; }
  .content__cols { grid-template-columns: 1fr; gap: 7px; flex: 1; align-content: start; }
  .content__col { gap: 7px; }
  .module__head { padding: 16px 12px; gap: 10px; }
  .module__icon { width: 30px; height: 30px; }
  .module__icon svg { width: 30px; height: 30px; }
  .module__label {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .module__label strong {
    display: inline;
    font-size: 15px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .module__chevron svg { width: 18px; height: 18px; }
  .module__badge { font-size: 9px; padding: 3px 8px; }
  .module__panel {
    position: static;
    margin-top: -4px;
    border-radius: 0 0 14px 14px;
    box-shadow: none;
  }

  /* ---- APOSTILA — ocupa ao menos uma tela e cresce com os acordeões ---- */
  .ebook {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    overflow: visible;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .ebook__inner { grid-template-columns: 1fr; gap: 8px; justify-items: stretch; }
  .ebook__content { display: contents; }
  .ebook__title {
    order: 1;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
  }
  .ebook__sub { order: 2; font-size: 10.5px; text-align: center; margin-bottom: 0; }
  .ebook__book { order: 3; }
  .ebook__book img {
    width: clamp(170px, 48vw, 210px);
    max-width: 100%;
    height: auto;
    margin: 4px auto;
  }
  .cat-panel { order: 4; }
  .cat-grid { order: 5; }

  /* categorias viram acordeões no fluxo normal, sem cobrir conteúdo */
  .cat-panel,
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 6px;
    padding: 0;
    background: none;
  }
  .cat {
    position: relative;
    background: var(--pink-soft);
    border-radius: 14px;
  }
  .cat__title {
    appearance: none;
    -webkit-appearance: none;
    margin-bottom: 0;
    padding: 12px 12px;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
  .cat__title:focus-visible {
    outline: 3px solid rgba(180, 40, 76, .3);
    outline-offset: 2px;
  }
  .cat__icon svg { width: 20px; height: 20px; }
  .cat__title::after {
    content: "";
    margin-left: auto;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
  .cat.is-open .cat__title::after { transform: rotate(-135deg); }
  .cat__list {
    display: none;
    position: static;
    background: #fff;
    border: 1px solid var(--pink-soft);
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    padding: 12px 14px;
  }
  .cat.is-open .cat__list { display: flex; }
  .cat__list li { font-size: 13px; }

  /* cards de benefícios */
  .ebook__cards {
    order: 6;
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    gap: 6px;
    margin-top: 12px;
  }
  .ecard { padding: 8px 4px; }
  .ecard__icon { width: 24px; height: 24px; margin-bottom: 4px; }
  .ecard__icon svg { width: 13px; height: 13px; }
  .ecard strong { font-size: 9px; }
  .ecard > span:last-child { font-size: 8px; }

  /* ---- TRANSPARÊNCIA ---- */
  .transp { padding: 32px 20px; }
  .transp__cols { grid-template-columns: 1fr; gap: 14px; }
  .transp__cta .cta { width: 100%; }
  .trust--center img { width: 100%; max-width: 280px; }
  .marquee {
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  .marquee__track {
    animation-play-state: running !important;
    pointer-events: none;
  }

  /* ---- EXPERT ---- */
  .expert { padding: 40px 20px; }
  .expert__panel { padding: 24px 22px; }
  .expert__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .expert__stats li {
    width: auto;
    min-width: 0;
    padding: 14px 5px;
  }
  .expert__stats strong { font-size: clamp(20px, 6vw, 26px); }
  .expert__stats span {
    font-size: clamp(9px, 2.7vw, 11px);
    overflow-wrap: anywhere;
  }

  /* ---- RESUMO ---- */
  .summary { padding: 36px 20px; }
  .summary__card { padding: 22px 18px; }

  /* ---- GARANTIA ---- */
  .warranty { padding: 48px 20px; }

  /* ---- FAQ 2 -> 1 ---- */
  .faq { padding: 48px 20px 56px; }
  .faq__grid { grid-template-columns: 1fr; gap: 12px; }

  /* ---- CTA FINAL ---- */
  .final-cta { padding: 40px 16px 56px; }
  .final-cta__panel { grid-template-columns: 1fr; }
  .final-cta__media {
    order: -1;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .final-cta__media img { object-position: center 45%; }
  .final-cta__media::after {
    background: linear-gradient(180deg, rgba(200,56,94,0) 40%, rgba(200,56,94,.55) 100%);
  }
  .final-cta__content { padding: 34px 26px; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__price { align-items: center; }
  .final-cta__btn { width: 100%; }

  /* ---- RODAPÉ ---- */
  .footer { padding: 48px 24px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__tagline { max-width: none; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}
