/* ============================================================
   Bolos Gelados — Bia Nocete
   Premium landing page design system
   ============================================================ */

:root {
  /* Surfaces */
  --bg:           #FAFAFA;
  --bg-warm:      #FFF5F8;
  --surface:      #FFFFFF;
  --surface-soft: #FFF8FB;

  /* Ink */
  --ink:        #2C2421;
  --ink-strong: #1F1916;
  --ink-soft:   #7B6C63;
  --ink-faint:  #A89A91;

  /* Warm accents - Rosa/Pink */
  --coral:        #f84268;   /* highlighted words + icon stroke   */
  --coral-deep:   #e63a5c;
  --coral-light:  #ff9bb5;
  --peach:        #ffc0d9;
  --rose:         #ffb3cc;
  --champagne:    #ffe6f0;
  --pink-soft:    #ffd9e6;   /* badge + icon chip bg              */
  --pink-tint:    #fff0f5;
  --olive:        #8DA242;   /* "EU entrego" check accent         */

  /* Gradients */
  --grad-cta:    linear-gradient(135deg, #ff6b8a 0%, #f84268 55%, #e63a5c 100%);
  --grad-soft:   linear-gradient(135deg, #ffe6f0 0%, #ffd9e6 100%);
  --grad-text:   linear-gradient(120deg, #f84268 0%, #e63a5c 100%);

  /* Lines */
  --hair: #f0e6ec;
  --hair-warm: #f5dce6;

  /* Shadows — soft, layered, pink-tinted */
  --sh-sm:  0 2px 8px rgba(248, 66, 104, 0.05);
  --sh-md:  0 10px 30px rgba(248, 66, 104, 0.08);
  --sh-lg:  0 24px 60px rgba(248, 66, 104, 0.12);
  --sh-glass: 0 20px 50px rgba(248, 66, 104, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);

  /* Radii */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Type */
  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Overlock", system-ui, -apple-system, sans-serif;
  --script: "Sacramento", cursive;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
section { position: relative; }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink-strong);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 4.1vw, 50px); line-height: 1.2; }
h2 { font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; }
h3 { font-size: 21px; line-height: 1.25; }

p { margin: 0; text-wrap: pretty; }
.lede { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }

.hl {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--pink-soft);
  color: var(--coral);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(248,66,104,0.10);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px clamp(16px, 3vw, 24px);
  box-shadow: 0 8px 20px rgba(248, 66, 104, 0.28);
  border: none;
  border-radius: 10px;
  outline: none;
  transition: all 300ms cubic-bezier(0.2, 0.8, 0.3, 1);
  height: auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(248, 66, 104, 0.36);
}
.btn-primary:active {
  transform: translateY(-2px);
}
.btn-primary .arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 300ms ease;
}
.btn-primary:hover .arrow {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(3px);
}
.btn-primary .arrow svg {
  width: 20px;
  height: 20px;
}
.btn-full { width: 100%; }

/* trust line */
.trust {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--ink-soft); font-size: 13.5px; font-weight: 600;
}
.trust svg { width: 16px; height: 16px; color: var(--coral); }

/* ---------- Icon chip ---------- */
.chip {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #FDEFE9 0%, #FBE2D8 100%);
  box-shadow: var(--sh-sm), inset 0 1px 0 rgba(255,255,255,0.7);
  color: var(--coral);
  flex: none;
}
.chip svg { width: 23px; height: 23px; stroke-width: 1.6; }
.chip-sm { width: 44px; height: 44px; border-radius: 14px; }
.chip-sm svg { width: 18px; height: 18px; }

/* ---------- Generic card ---------- */
.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(255,255,255,0.7);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px) clamp(24px, 3vh, 48px);
  min-height: 110vh;
  overflow: hidden;
}
/* warm glow background + hero photo */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(250,248,246,0.82) 0%, rgba(250,248,246,0.60) 60%, rgba(250,248,246,0.40) 100%),
    url('assets/herodesktop.webp') center / cover no-repeat;
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero-left  { display: contents; }
.hero-right { display: contents; }

.hero-badge {
  order: 0;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 12px;
  color: var(--coral);
}
.hero-h1 {
  order: 1;
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero-lede {
  order: 2;
  max-width: none;
  margin: 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.hero-cta {
  order: 6;
  margin: 0;
  width: 100%;
  max-width: 380px;
}
.hero-trust {
  order: 7;
  align-self: center;
  margin-top: 0;
}

.hero-price {
  order: 5;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 0;
  width: fit-content;
}

.hero-price-from {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-price-from s {
  text-decoration-color: var(--ink-soft);
  opacity: 0.7;
}

.hero-price-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-price-value {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-price-install {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
  width: 100%;
  font-weight: 500;
}
.expert-card { align-self: center; }

.mini-benes {
  order: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0;
  max-width: none;
}
.mini-bene {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.mini-bene svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex: none;
  margin-top: 2px;
}

/* Right column: video + expert */
.hero-media { display: grid; gap: 22px; }

.video-frame {
  order: 3;
  width: 100%;
  max-width: min(100%, calc(clamp(200px, 34vh, 360px) * 16 / 9));
  position: relative;
  border-radius: var(--r-xl);
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  contain: layout;
}
.video-screen {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: transparent;
  box-shadow: 0 12px 30px rgba(120,75,55,0.25), inset 0 0 0 1px rgba(120,75,55,0.08);
}
.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 22px;
}
.video-screen image-slot { width: 100%; height: 100%; }

/* Facade: thumbnail clicável que carrega o vídeo */
.video-facade { cursor: pointer; }
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,16,0) 40%, rgba(26,18,16,0.35) 100%);
  border-radius: 22px;
  transition: background .3s ease;
}
.video-facade:hover::after { background: linear-gradient(180deg, rgba(26,18,16,0.1) 0%, rgba(26,18,16,0.4) 100%); }
.video-facade.loaded::after { display: none; }
.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-facade:hover .video-play { transform: scale(1.1); }
.video-play svg { color: var(--coral-deep); margin-left: 4px; }
.video-facade:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: transform .25s ease;
}
.play-btn:hover { transform: scale(1.07); }
.play-btn svg { width: 26px; height: 26px; color: var(--coral-deep); margin-left: 3px; }
/* video controls bar */
.video-bar {
  position: absolute; left: 14px; right: 14px; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  background: linear-gradient(0deg, rgba(40,25,18,0.55), rgba(40,25,18,0));
}
.video-bar .mini-play { display: flex; }
.video-bar svg { width: 16px; height: 16px; }
.v-track { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.35); position: relative; }
.v-track::before { content:""; position:absolute; left:0; top:0; bottom:0; width:34%; background:#fff; border-radius:4px; }
.v-track::after { content:""; position:absolute; left:34%; top:50%; width:10px; height:10px; border-radius:50%; background:#fff; transform:translate(-50%,-50%); }
.v-right { display: flex; align-items: center; gap: 14px; }

/* Expert card under video */
.expert-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72) 0%, rgba(251,224,216,0.6) 100%);
  backdrop-filter: blur(16px);
  box-shadow: var(--sh-glass);
  border: 1px solid rgba(255,255,255,0.7);
  max-width: 380px;
  margin-left: auto;
}
.expert-card image-slot { width: 60px; height: 60px; flex: none; }
.expert-card .ec-name { display: flex; align-items: center; gap: 7px; font-weight: 800; color: var(--ink-strong); font-size: 16px; }
.expert-card .ec-name svg { width: 16px; height: 16px; color: #4FA3DE; }
.expert-card .ec-sub { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; margin-top: 2px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.section-pad {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Desktop: normal grid, hide duplicates */
/* Marquee de benefícios — faixa translúcida no final do hero */
.hero-marquee {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  grid-column: 1 / -1;
  order: -1;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -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%);
}
.benefits-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.hero-marquee:hover .benefits-track,
.hero-marquee:active .benefits-track {
  animation-play-state: paused;
}
.bene-dup { display: block; }
.bene-card {
  flex: 0 0 auto;
  max-width: 280px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.bene-card h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 4px;
  line-height: 1.25;
  color: var(--ink-strong);
  text-shadow: 0 1px 6px rgba(255,255,255,0.85);
}
.bene-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(255,255,255,0.85);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .benefits-track { animation: none; }
}

/* ============================================================
   APRENDER
   ============================================================ */
.learn-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 44px;
  align-items: start;
}
.learn-copy h2 { margin: 20px 0 18px; }
.learn-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 15px; }
.learn-list li { display: flex; align-items: center; gap: 13px; font-size: 15px; font-weight: 600; color: var(--ink); }
.learn-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--grad-cta);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(248,66,104,0.3);
}
.learn-list .tick svg { width: 14px; height: 14px; color: #fff; stroke-width: 3; }

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--sh-md);
  border: 1px solid rgba(255,255,255,0.8);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.cat-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.cat-card .cat-name { text-align: center; font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink-strong); padding: 13px 8px 15px; }
.cat-more { text-align: center; color: var(--ink-soft); font-size: 14px; margin-top: 22px; font-style: italic; }
.cat-card-empty .cat-placeholder {
  width: 100%; height: 152px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft);
  color: var(--ink-faint);
  font-size: 13px; font-weight: 700; font-style: italic;
  letter-spacing: 0.05em;
}

/* ============================================================
   EXPERT
   ============================================================ */
.expert-section {
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  background-color: #FFF5F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.expert-section .wrap { width: 100%; }
.expert-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "photo badge"
    "photo title"
    "photo text";
  column-gap: 64px;
  align-items: center;
}
.expert-badge { grid-area: badge; align-self: end; justify-self: start; }
.expert-h2 { grid-area: title; margin: 16px 0 18px !important; }
.expert-photo-wrap { grid-area: photo; }
.expert-text { grid-area: text; align-self: start; }
.expert-photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.expert-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 66, 104, 0.4) 0%, rgba(248, 66, 104, 0.2) 40%, rgba(248, 66, 104, 0) 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 620px) {
  .expert-glow {
    inset: -16px;
  }
}
.expert-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  filter: drop-shadow(0 0 30px rgba(248, 66, 104, 0.35));
}
.expert-img img {
  width: auto !important;
  max-width: 100%;
  max-height: 480px;
  height: auto;
  object-fit: contain;
}
.float-badge {
  position: absolute;
  right: -28px; top: 50%; transform: translateY(-50%);
  width: 138px; height: 138px; border-radius: 50%;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-glass);
  border: 1px solid rgba(255,255,255,0.8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  z-index: 2;
}
.float-badge .fb-num { font-family: var(--sans); font-size: 30px; font-weight: 700; color: var(--coral); line-height: 1; }
.float-badge .fb-unit { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-strong); margin-bottom: 6px; }
.float-badge .fb-txt { font-size: 10.5px; color: var(--ink-soft); line-height: 1.35; }

.expert-text h2 { margin: 20px 0 18px; }
.expert-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--coral-deep);
  line-height: 1.6;
  margin-top: 20px;
}
.expert-quote strong { font-weight: 700; }
.expert-highlights { display: flex; gap: 30px; flex-wrap: wrap; margin: 30px 0 26px; }
.eh { display: flex; align-items: flex-start; gap: 11px; max-width: 200px; }
.eh .chip-sm { background: linear-gradient(150deg,#FDEFE9,#FBE2D8); color: var(--coral); }
.eh-txt { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.signature { font-family: var(--script); font-size: clamp(32px, 4vw, 46px); color: var(--coral-deep); line-height: 1; }

/* ============================================================
   PROVAS SOCIAIS
   ============================================================ */
.proof-section {
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-head { text-align: center; margin-bottom: 28px; }
.proof-head h2 { margin: 12px 0 10px; font-size: clamp(22px, 2vw, 26px); }
.proof-head .lede { max-width: 56ch; margin: 0 auto; font-size: 13.5px; }

.proof-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 4px;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.proof-track:active { cursor: grabbing; }
.proof-track::-webkit-scrollbar { height: 4px; }
.proof-track::-webkit-scrollbar-thumb { background: rgba(214,130,94,0.3); border-radius: 999px; }
.proof-track::-webkit-scrollbar-track { background: transparent; }

.proof-card {
  scroll-snap-align: start;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform 300ms ease-out;
}
.proof-card:hover {
  transform: translateY(-4px);
}
.proof-card picture,
.proof-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Marquee de depoimentos ── */
.dep-marquee {
  overflow: hidden;
  margin: 36px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.dep-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: dep-scroll 40s linear infinite;
}
.dep-marquee:hover .dep-track { animation-play-state: paused; }
@keyframes dep-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.dep-card {
  flex: 0 0 280px;
  background: #fff8f9;
  border: 1px solid rgba(248,66,104,0.1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dep-stars {
  color: #F5A623;
  font-size: 15px;
  letter-spacing: 2px;
}
.dep-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.dep-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral);
}

.proof-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral);
  margin: 12px 0 0;
}
.proof-hint svg { width: 14px; height: 14px; }

.proof-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  width: 100%;
}

.proof-cta-btn {
  width: auto;
  max-width: 100%;
}
.proof-cta-text {
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--ink-strong);
  margin: 0;
  text-align: center;
}
.proof-cta-btn {
  padding: 12px clamp(16px, 3vw, 24px);
  width: auto;
  max-width: 100%;
}

/* ============================================================
   GARANTIA — Conversão + urgência premium
   ============================================================ */
.guarantee-section {
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.guarantee-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.guarantee-content { padding: 0; }

/* Badge: "Garantia" */
.guarantee-content .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

/* Título: "Risco Zero para Você!" */
.guarantee-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 42px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}

/* Subtítulo: "Garantia incondicional!" em script */
.guarantee-subtitle {
  font-family: var(--script);
  font-size: 26px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin: 0 0 20px;
  line-height: 1.2;
}

/* Texto descritivo */
.guarantee-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 32px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.guarantee-text strong { font-weight: 700; color: rgba(255,255,255,0.98); }

/* Box de oferta: "OFERTA POR TEMPO LIMITADO" */
.guarantee-offer {
  margin: 32px 0;
  padding: 0;
}
.guarantee-offer .offer-price {
  color: rgba(255,255,255,0.85);
}
.guarantee-offer .price-value {
  color: #fff;
}
.offer-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
  display: block;
}
.offer-price {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1;
}
.price-value {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
}

/* Animação: Border glow girando */
@keyframes border-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(248,66,104,0.7), inset 0 0 10px rgba(248,66,104,0.3);
  }
  50% {
    box-shadow: 0 0 20px 2px rgba(248,66,104,0.5), inset 0 0 10px rgba(248,66,104,0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248,66,104,0), inset 0 0 10px rgba(248,66,104,0.3);
  }
}

/* Animação: Pulse glow do botão (fallback) */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 0 rgba(248,66,104,0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 14px rgba(248,66,104,0);
  }
}

/* Botão: CTA branco com efeito WhatsApp-style */
.guarantee-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--coral);
  padding: 12px clamp(16px, 3vw, 24px);
  margin: 24px 0 0;
  font-weight: 700;
  font-size: 13px;
  border: none;
  border-radius: 10px;
  height: auto;
  min-height: 36px;
  cursor: pointer;
  transition: all 200ms ease-out;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: border-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.guarantee-btn:hover {
  background: rgba(255,255,255,0.98);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 0 rgba(248,66,104,0.5);
  animation: none;
}
.guarantee-btn:active {
  transform: translateY(-1px);
  animation: none;
}
.guarantee-btn:focus {
  outline: none;
}

/* Seção de pagamento */
.guarantee-payment {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.payment-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.76);
  margin: 0 0 14px;
  display: block;
  letter-spacing: 0.03em;
}
.payment-cards {
  display: inline-block;
  max-width: 300px;
  width: 100%;
}
.payment-cards img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-head { text-align: center; margin-bottom: 28px; }
.faq-head h2 { margin-top: 18px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; text-align: left; max-width: 980px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--hair);
  overflow: hidden;
  transition: box-shadow .25s ease;
}
.faq-item.open { box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink-strong);
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .pm {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--pink-soft); color: var(--coral);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease, background .3s ease;
}
.faq-q .pm svg { width: 20px; height: 20px; }
.faq-item.open .pm { transform: rotate(135deg); background: var(--grad-cta); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-block {
  position: relative;
  border-radius: var(--r-xl);
  padding: 36px 44px;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(247,213,200,0.9) 0%, rgba(247,213,200,0) 60%),
    radial-gradient(90% 130% at 100% 100%, rgba(244,196,205,0.7) 0%, rgba(244,196,205,0) 55%),
    var(--surface-soft);
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.cta-block h2 { font-size: clamp(26px, 3vw, 36px); }
.cta-block .lede { margin-top: 16px; max-width: 420px; }
.cta-right { display: flex; flex-direction: column; align-items: stretch; gap: 22px; }
.cta-trust { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }


/* ============================================================
   O QUE ESPERAR — Transparência total
   ============================================================ */
.tt-section {
  min-height: 100vh;
  padding: clamp(28px, 4vh, 80px) clamp(20px, 5vw, 60px);
  background-color: #FFF5F8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.tt-section .wrap { width: 100%; }

.tt-inner {
  position: relative;
}

/* ---- Mascote (absoluta, invade a seção) ---- */
.tt-mascot {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 40%;
  z-index: 1;
  pointer-events: none;
}
.tt-mascot > img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}
.tt-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #FFE5EE 0%, rgba(255, 229, 238, 0) 65%);
  filter: blur(30px);
  z-index: 0;
}
.tt-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  transform: translate(-50%, -54%);
  z-index: 1;
  opacity: 0.8;
}
.tt-choco {
  position: absolute;
  border-radius: 5px;
  background: linear-gradient(135deg, #7a4a2b, #5a3320);
  box-shadow: 0 6px 14px rgba(90, 51, 32, 0.28);
  z-index: 1;
}
.tt-choco--1 { width: 20px; height: 20px; top: 8%;  left: 2%;  transform: rotate(18deg); }
.tt-choco--2 { width: 14px; height: 14px; top: 30%; right: -2%; transform: rotate(-12deg); opacity: 0.85; }
.tt-choco--3 { width: 17px; height: 17px; bottom: 14%; left: -4%; transform: rotate(28deg); opacity: 0.9; }

/* ---- Bloco superior (texto + cards), fica à esquerda ---- */
.tt-top {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.tt-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: #FFF3F6;
  border: 1px solid #FFD4E0;
  color: var(--coral);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tt-badge svg { width: 14px; height: 14px; }

.tt-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin: 16px 0 0;
}
.tt-title .tt-pink { color: var(--coral); }

.tt-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: #6E6E6E;
  margin: 12px 0 0;
  max-width: 460px;
}

/* ---- Cards comparativos ---- */
.tt-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 26px;
}
.tt-cmp {
  border-radius: 22px;
  padding: 26px;
}
.tt-cmp--no  { background: #FFF8F8; border: 1px solid #FFD9DF; }
.tt-cmp--yes { background: #FFFEF8; border: 1px solid #E7E2C7; }

.tt-cmp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tt-cmp-head h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.15;
}
.tt-hl-no  { color: var(--coral); }
.tt-hl-yes { color: var(--olive); }

.tt-cmp-ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.tt-cmp-ico svg { width: 22px; height: 22px; stroke-width: 2.5; }
.tt-cmp--no  .tt-cmp-ico { background: var(--coral); box-shadow: 0 6px 16px rgba(248, 66, 104, 0.30); }
.tt-cmp--yes .tt-cmp-ico { background: var(--olive); box-shadow: 0 6px 16px rgba(141, 162, 66, 0.30); }

.tt-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.tt-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}
.tt-li-ico {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tt-li-ico svg { width: 13px; height: 13px; stroke-width: 3; }
.tt-cmp--no  .tt-li-ico { background: rgba(248, 66, 104, 0.12); color: var(--coral); }
.tt-cmp--yes .tt-li-ico { background: rgba(141, 162, 66, 0.16); color: var(--olive); }

/* ---- Benefícios (largura total) ---- */
.tt-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.tt-benefit {
  background: #fff;
  border: 1px solid #F1F1F1;
  border-radius: 20px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tt-benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.tt-benefit-ico {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #FFF4F7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.tt-benefit-ico svg { width: 26px; height: 26px; color: var(--coral); }
.tt-benefit h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.tt-benefit p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.45;
  color: #777;
  margin: 0;
}

/* ---- CTA ---- */
.tt-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.tt-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px clamp(16px, 3vw, 24px);
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF7DA1, #FF4D7B);
  box-shadow: 0 15px 40px rgba(255, 77, 123, 0.35);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tt-cta-btn svg { width: 20px; height: 20px; }
.tt-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 77, 123, 0.42);
}
.tt-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: #777;
}
.tt-trust svg { width: 15px; height: 15px; }

/* ---- Desktop: cada item dos cards em UMA linha (estica os cards p/ perto da mascote) ---- */
@media (min-width: 981px) {
  .tt-top { max-width: 700px; }
  .tt-list li { white-space: nowrap; font-size: 13px; }
  /* compacta os dois cards: menos respiro em cima/embaixo e entre os textos */
  .tt-cmp { padding: 16px 26px; }
  .tt-cmp-head { margin-bottom: 10px; }
  .tt-list { gap: 8px; }

  /* compacta os cards de benefício: quadrados, menos padding, textos mais juntos, ícone menor */
  .tt-benefit { padding: 4px 18px !important; aspect-ratio: 1 / 1; }
  .tt-benefit-ico { width: 46px; height: 46px; border-radius: 14px; margin-bottom: 10px; }
  .tt-benefit-ico svg { width: 22px; height: 22px; }
  .tt-benefit h4 { margin-bottom: 4px; }
}

/* ---- Tablet + Mobile: empilha e reordena
   Ordem: título -> mascote -> não prometo -> eu entrego -> benefícios -> CTA ---- */
@media (max-width: 980px) {
  .tt-section { height: auto; min-height: 100vh; padding: 64px 0; }
  .tt-inner {
    display: flex;
    flex-direction: column;
  }
  /* achata o agrupador para reordenar entre os irmãos */
  .tt-top { display: contents; }
  .tt-header  { order: 1; text-align: center; }
  .tt-mascot  { order: 2; }
  .tt-compare { order: 3; }
  .tt-benefits{ order: 4; }
  .tt-cta     { order: 5; }

  .tt-mascot {
    position: static;
    width: 270px;
    max-width: 60%;
    margin: 20px auto 4px;
  }
  .tt-glow { width: 300px; height: 300px; }
  .tt-dots { width: 270px; height: 270px; }
  .tt-badge { margin-left: auto; margin-right: auto; }
  .tt-sub { margin-left: auto; margin-right: auto; }
  .tt-compare { margin-top: 24px; }
  .tt-benefits { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Mobile ---- */
@media (max-width: 620px) {
  .tt-section { padding: clamp(24px, 4vh, 48px) 0; overflow: visible; }
  .tt-inner { position: static; }
  .tt-badge { display: none; }

  .tt-br { display: none; }            /* deixa o título quebrar naturalmente */
  .tt-title {
    line-height: 1.08;
    margin-top: 0;
    overflow-wrap: break-word;
  }
  .tt-sub { margin: 8px 0 0; }

  .tt-mascot { display: none !important; }
  .tt-glow { width: 220px; height: 220px; z-index: -1; }
  .tt-dots { width: 200px; height: 200px; z-index: -1; }

  .tt-compare { grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
  .tt-cmp { padding: 20px 18px; border-radius: 18px; }
  .tt-cmp-head h3 { font-size: 18px; }
  .tt-cmp-ico { width: 42px; height: 42px; }
  .tt-cmp-ico svg { width: 20px; height: 20px; }
  .tt-list li { font-size: 14px; }

  .tt-benefits { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; position: relative; z-index: 2; }
  .tt-benefit { padding: 6px 6px; }
  .tt-benefit-ico { width: 36px; height: 36px; border-radius: 12px; margin-bottom: 4px; }
  .tt-benefit-ico svg { width: 18px; height: 18px; }
  .tt-benefit h4 { font-size: 12px; margin-bottom: 1px; font-weight: 600; }
  .tt-benefit p { display: none; }

  .tt-cta-btn { width: 100%; }
  .tt-choco { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tt-benefit, .tt-cta-btn { transition: none; }
}



/* ============================================================
   OFERTA
   ============================================================ */
.offer-section {
  background: var(--ink-strong);
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 60px);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197,106,75,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.offer-header {
  text-align: center;
  margin-bottom: 28px;
}

.offer-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}

.offer-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #FAF8F6;
  line-height: 1.2;
  margin: 0;
}

.offer-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 340px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-light), var(--coral), var(--coral-deep));
}

/* Itens */
.offer-items {
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.offer-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.offer-item-text strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
}

.offer-item-text span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.offer-item--bonus .offer-item-text strong {
  color: var(--coral);
}

/* Bloco de preço */
.offer-price-block {
  background: #FAF8F6;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid rgba(31,25,22,0.08);
}

.offer-total-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 4px;
}

.offer-from {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}

.offer-from s {
  color: var(--ink-faint);
}

.offer-by {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

.offer-price {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-installments {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.offer-installments strong {
  color: var(--ink);
}

.offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  padding: 12px clamp(16px, 3vw, 24px);
  height: auto;
  min-height: 36px;
  background: var(--coral);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: background 150ms ease-out, transform 150ms ease-out;
  text-align: center;
  line-height: 1.3;
}

.offer-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.offer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}

.offer-trust span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}

.offer-trust svg {
  color: var(--coral);
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 860px) {
  .offer-card {
    grid-template-columns: 1fr;
  }
  .offer-price-block {
    border-left: none;
    border-top: 1px solid rgba(31,25,22,0.08);
    padding: 40px 32px;
  }
  .offer-items {
    padding: 40px 32px;
  }
}

@media (max-width: 620px) {
  .offer-section {
    padding: 40px 0;
  }
  .offer-section .wrap { padding: 0 20px; }
  .offer-header {
    margin-bottom: 24px;
  }
  .offer-eyebrow {
    font-size: 10px;
  }
  .offer-heading {
    font-size: 22px;
  }
  .offer-card {
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  }
  .offer-items {
    padding: 20px 16px;
    gap: 12px;
  }
  .offer-item {
    gap: 10px;
  }
  .offer-check {
    width: 20px;
    height: 20px;
  }
  .offer-item-text strong {
    font-size: 13px;
  }
  .offer-item-text span {
    display: none;
  }
  .offer-price-block {
    padding: 20px 16px;
    gap: 4px;
  }
  .offer-total-label {
    font-size: 10px;
  }
  .offer-from {
    font-size: 13px;
  }
  .offer-by {
    font-size: 12px;
    margin-top: 4px;
  }
  .offer-price {
    font-size: 32px;
  }
  .offer-installments {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .offer-cta {
    gap: 8px;
    white-space: nowrap;
  }
  .offer-trust {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
  }
  .offer-trust span {
    font-size: 11px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--hair); background: var(--bg-warm); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.brand-mark { display: flex; align-items: center; gap: 14px; }
.brand-monogram {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 18px; color: var(--coral);
  flex: none;
}
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink-strong); letter-spacing: 0.02em; }
.brand-sub { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-top: 2px; }
.footer-tag { color: var(--ink-soft); font-size: 14px; margin: 18px 0 22px; max-width: 240px; }
.socials { display: flex; gap: 12px; }
.social {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--pink-soft); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.social:hover { transform: translateY(-3px); background: var(--coral-light); color: #fff; }
.social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-strong); margin: 6px 0 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { color: var(--ink-soft); text-decoration: none; font-size: 14px; transition: color .2s ease; }
.foot-col a:hover { color: var(--coral); }
.copyright { text-align: center; color: var(--ink-faint); font-size: 12.5px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Desktop (>620px) ---------- */
@media (min-width: 621px) {
  .hero { margin-top: -48px; }
}

/* ---------- Tablet (≤980) ---------- */
@media (max-width: 980px) {
  .wrap { padding: 0 40px; }

  /* Padding vertical tablet: 64px */
  .section-pad,
  .expert-section,
  .proof-section,
  .guarantee-section,
  .faq-section,
  .final-cta,
  .offer-section,
  .vd {
    padding: 64px 0;
  }

  /* Hero tablet: remove desktop bg image */
  .hero::before {
    background:
      radial-gradient(60% 55% at 82% 8%,  rgba(244,196,205,0.55) 0%, rgba(244,196,205,0) 60%),
      radial-gradient(50% 50% at 12% 0%,  rgba(247,224,210,0.55) 0%, rgba(247,224,210,0) 55%),
      radial-gradient(70% 60% at 95% 60%, rgba(243,213,196,0.40) 0%, rgba(243,213,196,0) 55%);
  }
  .hero-badge  { display: none; }
  .hero-h1     { font-size: clamp(32px, 7.5vw, 46px); line-height: 1.1; }
  .video-frame { align-self: stretch; }
  .hero-price  { width: 100%; }
  .hero-cta    { width: 100%; }
  .hero-trust  { margin-top: -16px; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
  .hero-trust svg { width: 15px; height: 15px; color: var(--ink-soft); }
  .mini-benes  { display: none; }

  /* Center all section headings & text on mobile */
  .learn-grid { grid-template-columns: 1fr; gap: 24px; }
  .learn-copy { text-align: left; }
  .learn-copy .lede { margin: 0; }
  .learn-copy .badge { margin: 0; }
  .learn-list { justify-items: start; }
  .learn-list li { justify-content: flex-start; text-align: left; }
  .cat-more { text-align: center; }

  /* Coluna única: badge → título → foto → texto */
  .expert-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 16px;
    text-align: center;
  }
  /* Reset das áreas para fluir na ordem do HTML */
  .expert-badge,
  .expert-h2,
  .expert-photo-wrap,
  .expert-text { grid-area: auto; }
  .expert-badge { justify-self: center; align-self: auto; }
  .expert-h2 { margin: 4px 0 6px !important; }
  .expert-photo-wrap { margin: 8px 0; }
  .expert-text { text-align: center; margin-top: 8px; }
  .expert-text .lede { margin: 0 auto; }
  .expert-highlights { justify-content: center; }
  .eh { text-align: left; }
  .signature { text-align: center; }

  .faq-head { text-align: center; }
  .cta-block { text-align: center; }
  .cta-block .lede { margin: 16px auto 0; }

  .float-badge { right: 20px; top: auto; bottom: -28px; transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; gap: 28px; padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* Provas sociais: coluna única em mobile */
  /* Depoimentos mobile: arrastar para o lado */
  .dep-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    margin: 24px 0 8px;
    padding: 4px 0 12px;
  }
  .dep-track {
    animation: none;
    width: max-content;
  }
  .dep-card { flex: 0 0 240px; }
  .proof-head { margin-bottom: 28px; }
  .proof-track {
    grid-template-columns: 1fr;
  }
  .proof-cta { margin-top: 24px; gap: 14px; }
  .proof-cta-btn { width: 100%; }

  /* Mobile: Garantia */
  .guarantee-content .badge { margin-bottom: 12px; }
  .guarantee-title { font-size: clamp(28px, 6vw, 36px); margin-bottom: 8px; }
  .guarantee-subtitle { font-size: 22px; margin-bottom: 16px; }
  .guarantee-text { font-size: 14px; margin-bottom: 24px; }
  .guarantee-offer { padding: 18px 16px; margin: 24px 0; }
  .offer-price { font-size: 20px; }
  .price-value { font-size: 28px; }
  .guarantee-btn { width: 100%; gap: 8px; white-space: nowrap; letter-spacing: -0.3px; }
  .guarantee-payment { margin-top: 20px; padding-top: 20px; }
  .payment-cards { max-width: 260px; }
}

/* Reduced motion: remover animações em prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  @keyframes pulse-glow {
    0%, 100% {
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
  }
  .guarantee-btn {
    animation: pulse-glow 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  .guarantee-btn:hover {
    transform: none;
  }
  .guarantee-btn:active {
    transform: none;
  }
}

/* ---------- Mobile (≤620) ---------- */
@media (max-width: 620px) {
  body { font-size: 16px; }

  .wrap { padding: 0 20px; }
  .hero {
    padding: 40px 0 48px;
    display: flex;
    align-items: flex-start;
    min-height: 110vh;
  }
  .hero::before {
    background:
      url('assets/heromobile.webp') center top / cover no-repeat !important;
  }
  /* Degradê suave no fim da hero, funde a foto na seção sem subir demais */
  .hero::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 300px;
    background: linear-gradient(to bottom, rgba(250,248,246,0) 0%, rgba(250,248,246,0.3) 40%, rgba(250,248,246,0.6) 64%, rgba(250,248,246,0.9) 82%, var(--bg) 94%, var(--bg) 100%);
    pointer-events: none;
    z-index: 0;
  }
  .hero .wrap { width: 100%; }
  /* Título sobe; subtítulo e vídeo agrupados logo abaixo */
  .hero-grid { gap: 8px; }
  .hero-lede   { margin-top: 0; }
  .video-frame { margin-top: 0; }
  .section-pad, .expert-section, .faq-section, .final-cta,
  .proof-section, .guarantee-section, .offer-section, .vd {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .section-pad .wrap, .faq-section .wrap, .final-cta .wrap,
  .proof-section .wrap, .guarantee-section .wrap, .offer-section .wrap,
  .vd .wrap { width: 100%; }

  /* Buttons: responsive sizing */
  .btn-primary { width: 100%; }

  /* Hero CTA menor e proporcional */
  .hero-cta {
    width: auto;
    align-self: center;
    margin-top: 0;
  }
  .hero-cta .arrow { width: 26px; height: 26px; }
  .hero-cta .arrow svg { width: 13px; height: 13px; }

  /* Preço hero centralizado em mobile */
  .hero-price {
    align-self: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .hero-price-install {
    text-align: center;
  }

  /* Compra segura centralizado em mobile */
  .hero-trust {
    align-self: center;
    text-align: center;
    margin-top: 0;
  }

  /* Final CTA button */
  .final-cta .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 40px;
    white-space: nowrap;
    border-radius: 16px;
  }

  /* Cards & elements: 20px radius */
  .bene-card, .cat-card, .faq-item, .video-frame, .expert-card, .cta-block { border-radius: 20px; }
  .video-screen { border-radius: 16px; }

  /* Mini benefits: 2 cols */
  .mini-benes { grid-template-columns: 1fr 1fr; }

  /* ===== HERO MARQUEE — ajustes mobile ===== */
  .hero-marquee {
    margin-top: -16px;
    margin-bottom: 16px;
    padding: 12px 0;
    border-radius: 16px;
  }
  .benefits-track {
    gap: 28px;
    animation-duration: 28s;
  }
  .bene-card {
    max-width: 220px;
    padding: 0 4px;
  }

  /* ===== PRODUCT GALLERIES → ALWAYS 2 COLUMNS ===== */
  .cat-grid { grid-template-columns: 1fr 1fr !important; gap: 14px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .brand-mark + .footer-tag { grid-column: 1 / -1; }
}

/* ---------- Small phones (≤420) ---------- */
@media (max-width: 420px) {
  /* Mini-benes can stack */
  .mini-benes { grid-template-columns: 1fr 1fr; }

  /* Product gallery: ALWAYS 2 columns (never 1) */
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.42), inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 950;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), opacity .3s ease, visibility .3s ease;
  -webkit-tap-highlight-color: transparent;
  /* Oculto na hero; aparece a partir da seção de baixo */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.85);
}
.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.wa-float.is-visible:hover { transform: scale(1.08); }
.wa-float svg { width: 33px; height: 33px; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}


@media (max-width: 620px) {
  .wa-float { width: 56px; height: 56px; }
  .wa-float svg { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}

@media (max-width: 620px) {
  /* Hero CTA: sem transparência em mobile */
  .hero-cta {
    background: var(--coral);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: none;
    color: #fff;
  }
  .hero-cta:hover { background: var(--coral-deep); }
}

/* ============================================================
   VÍDEO AULAS — Video lessons section with tabs
   ============================================================ */
.vd {
  position: relative;
  background: linear-gradient(155deg, #FDEFF1 0%, #FCE4E8 55%, #F8D8DD 100%);
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.vd::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: clamp(160px, 22vw, 300px);
  height: clamp(160px, 22vw, 300px);
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.vd-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.vd-reverse .vd-wrap {
  grid-template-columns: 1.1fr 0.9fr;
}

.vd-apostila .vd-features { display: none; }

.vd-apostila-img {
  display: none;
  max-width: 220px;
  margin: 0 auto 20px;
  background: transparent;
}

.vd-apostila-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* ─── Coluna esquerda: apresentação ─── */
.vd-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.vd-badge { margin: 0; }
.vd-badge svg { width: 14px; height: 14px; }

.vd-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.vd-lede {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}

.vd-features {
  list-style: none;
  margin: 6px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.vd-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vd-feature-ico {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(248,66,104,0.12);
}
.vd-feature-ico svg { width: 21px; height: 21px; color: var(--coral); }
.vd-feature-txt { display: flex; flex-direction: column; gap: 1px; }
.vd-feature-txt strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
}
.vd-feature-txt span {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.vd-cta-btn {
  margin-top: 8px;
  align-self: flex-start;
  width: auto;
}


/* ─── Coluna direita: painel com nomes das aulas ─── */
.vd-right { min-width: 0; }
.vd-panel {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(180, 90, 100, 0.16);
}
.vd-panel-head {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.vd-panel-head svg { width: 18px; height: 18px; }

/* ─── Abas ─── */
.vd-tabs { position: relative; }
.vd-tab-input { display: none; }

.vd-tab-labels {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(31, 25, 22, 0.1);
  margin-bottom: 16px;
}

.vd-tab-label {
  padding: 10px 12px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 150ms ease-out, border-color 150ms ease-out;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-tab-icon { width: 15px; height: 15px; flex: none; }
.vd-tab-label:hover { color: var(--ink); }

#vd-tab-1:checked ~ .vd-tab-labels label[for="vd-tab-1"],
#vd-tab-2:checked ~ .vd-tab-labels label[for="vd-tab-2"],
#vd-tab-3:checked ~ .vd-tab-labels label[for="vd-tab-3"],
#vd-tab-4:checked ~ .vd-tab-labels label[for="vd-tab-4"] {
  color: var(--coral);
  border-bottom-color: var(--coral);
  font-weight: 700;
}

.vd-tab-content {
  display: none;
  height: clamp(280px, calc(100vh - 300px), 440px);
  overflow-y: auto;
  padding-right: 10px;
}
.vd-tab-content::-webkit-scrollbar { width: 5px; }
.vd-tab-content::-webkit-scrollbar-thumb { background: rgba(197,106,75,0.28); border-radius: 999px; }
.vd-tab-content::-webkit-scrollbar-track { background: transparent; }

#vd-tab-1:checked ~ .vd-tab-content:nth-child(6),
#vd-tab-2:checked ~ .vd-tab-content:nth-child(7),
#vd-tab-3:checked ~ .vd-tab-content:nth-child(8),
#vd-tab-4:checked ~ .vd-tab-content:nth-child(9) {
  display: block;
  animation: fadeIn 200ms ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.vd-list { display: block; }

.vd-block-items { display: flex; flex-direction: column; gap: 0; }

.vd-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(31, 25, 22, 0.06);
}
.vd-row:last-child { border-bottom: none; }

.vd-mark {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(248,66,104,0.22);
}
.vd-mark svg { width: 12px; height: 12px; color: #fff; margin-left: 1px; }

.vd-name {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

.vd-subtitle {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--coral);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(248,66,104,0.18);
}
/* Primeiro subtítulo sem margin-top: o padding-top do container já dá o espaço */
.vd-subtitle:first-child { margin-top: 0; }

/* Picture tags: reset para se comportar como img */
picture { display: block; max-width: 100%; }
picture img { display: block; width: 100%; height: auto; }

.bonus-card-img picture { width: 100%; height: 100%; }
.bonus-card-img picture img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Responsivo ─── */
@media (max-width: 1024px) {
  .vd-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .vd-left { align-items: center; text-align: center; }
  .vd-lede { max-width: 46ch; }
  .vd-features { max-width: 420px; }
  .vd-feature { text-align: left; }
  .vd-cta-btn { align-self: center; }
}

@media (max-width: 620px) {
  .vd {
    padding: 48px 0;
  }
  .vd .wrap { padding: 0 20px; }
  .vd::before { display: none; }

  .vd-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .vd-left { gap: 10px; }
  .vd-title { font-size: clamp(20px, 5.5vw, 26px); }
  .vd-lede  { font-size: 14px; line-height: 1.5; }

  .vd-features { gap: 8px; margin: 0; }
  .vd-feature  { gap: 10px; }
  .vd-feature-ico { width: 34px; height: 34px; }
  .vd-feature-ico svg { width: 16px; height: 16px; }
  .vd-feature-txt strong { font-size: 13px; }
  .vd-feature-txt span   { font-size: 12px; }
.vd-right {
    width: 100%;
    overflow-x: hidden;
  }
  .vd-panel {
    padding: 14px 12px 12px;
    border-radius: 14px;
    overflow-x: hidden;
  }
  .vd-panel-head { margin-bottom: 8px; }

  .vd-apostila .vd-apostila-img { display: block; }

  /* Lista de aulas com scroll interno — não estoura a seção */
  .vd-tab-content {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
  }

  .vd-row {
    gap: 8px;
    overflow: hidden;
  }

  .vd-mark {
    flex-shrink: 0;
  }

  .vd-name {
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
  }

  .vd-apostila .vd-wrap {
    gap: 0;
    align-content: flex-start;
  }

  .vd-apostila .vd-left { order: 1; gap: 8px; }
  .vd-apostila .vd-right { order: 2; margin-top: 16px; }
  .vd-apostila .vd-cta-btn { order: 3; margin-top: 20px; }

  /* Mobile: todos os botões bem arredondados */
  .btn,
  .btn-primary,
  .offer-cta,
  .guarantee-btn,
  .tt-cta-btn,
  .proof-cta-btn,
  .vd-cta-btn,
  .hero-cta,
  .final-cta .btn-primary {
    border-radius: 999px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   SEÇÕES TRAVADAS (.vd-lock) — vídeo aulas e apostila (somente mobile)
   Topo fixo, lista rola por dentro e o CTA só aparece ao chegar no fim.
   Ao terminar, tocar em qualquer parte avança pra próxima seção.
   ════════════════════════════════════════════════════════════ */
@media (max-width: 620px) {
  .vd-lock {
    height: 100vh;       /* fallback p/ iOS < 15.4 (sem suporte a dvh) */
    height: 100dvh;
    min-height: 100dvh;
    padding: 20px 0 16px;
    justify-content: flex-start;
  }

  .vd-lock .vd-wrap {
    flex: 1;
    min-height: 0;
    gap: 12px;
  }

  /* Topo fixo: não rola */
  .vd-lock .vd-left { flex: none; }

  /* Coluna da lista ocupa o espaço que sobra */
  .vd-lock .vd-right {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  /* Remove o card branco: vira container transparente */
  .vd-lock .vd-panel {
    background: transparent;
    border: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .vd-lock .vd-panel-head { flex: none; }

  /* Lista das aulas: única parte que rola; trava a página enquanto não termina */
  .vd-lock .vd-tab-content {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  /* Fade no rodapé da lista indicando que há mais conteúdo */
  .vd-lock .vd-right::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 44px;
    background: linear-gradient(to top, #FBE0E4 0%, rgba(251, 224, 228, 0) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 250ms ease-out;
  }
  .vd-lock.vd-end .vd-right::after { opacity: 0; }

  /* CTA: reservado no layout, escondido até a lista chegar ao fim */
  .vd-lock .vd-cta-btn {
    flex: none;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 350ms ease-out, transform 350ms ease-out;
  }
  .vd-lock.vd-end .vd-cta-btn {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* No fim, a lista já terminou: deixa o toque "passar" pra seção avançar.
     O CTA fica fora da lista, então segue clicável. */
  .vd-lock.vd-end .vd-tab-content { pointer-events: none; }

  /* Apostila travada: imagem do ebook fixa no topo (maior = lista mostra menos linhas) */
  .vd-lock .vd-apostila-img {
    flex: none;
    max-width: 168px;
    margin: 0 auto 6px;
  }
}