/* ───────────────────────────────────────────────
   CCA — Cosmetologia Consciente aplicada
   Tokens, type, layout primitives, sections
─────────────────────────────────────────────── */

:root {
  --bg: #252525;
  --bg-2: #1c1c1c;
  --cream: #EDD7B5;
  --cream-soft: #f3e3c6;
  --gold-1: #EABB6A;
  --gold-2: #C39852;
  --gold-3: #B08C46;
  --white: #ffffff;
  --text-muted: rgba(255,255,255,0.72);
  --hair-cream: rgba(237,215,181,0.18);
  --hair-dark: rgba(37,37,37,0.16);
  --whatsapp: #04581B;
  --whatsapp-2: #057d28;
  --gold-gradient: linear-gradient(135deg,#EABB6A 0%,#D4A65C 35%,#B08C46 100%);
  --gold-radial: radial-gradient(120% 140% at 0% 0%, #F3CE85 0%, #D4A65C 40%, #9A7A3C 100%);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 10px 40px -16px rgba(0,0,0,0.6);

  /* tweakable */
  --module-style: list; /* list | numbered | tiles */
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { scroll-behavior: smooth; }
#comprar { scroll-margin-top: 24px; }
@media (max-width: 899px) { #comprar { scroll-margin-top: 16px; } }
body {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ─── Type scale ─── */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  margin: 0;
}
.lead {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
}
.body { font-size: 17px; line-height: 1.6; }
.fine { font-size: 13px; letter-spacing: 0.06em; }

.serif-touch {
  font-style: italic;
  font-weight: 500;
}

.cream-text { color: var(--cream); }

/* ─── Layout ─── */
.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
}
.section--cream {
  background: var(--cream);
  color: var(--bg);
}
/* Adjacent sections of same theme collapse their boundary */
.section--cream + .section--cream { padding-top: clamp(32px, 4vw, 56px); }
.section--cream:has(+ .section--cream) { padding-bottom: clamp(32px, 4vw, 56px); }
.section:not(.section--cream):not(.support) + .section:not(.section--cream):not(.support) { padding-top: clamp(32px, 4vw, 56px); }
.section:not(.section--cream):not(.support):has(+ .section:not(.section--cream):not(.support)) { padding-bottom: clamp(32px, 4vw, 56px); }
.section--cream .lead { color: rgba(37,37,37,0.72); }
.section--cream .eyebrow { color: rgba(37,37,37,0.65); }
.divider-thread {
  width: 1px; height: 56px; margin: 0 auto;
  background: linear-gradient(180deg, transparent, var(--cream), transparent);
  opacity: 0.5;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(237,215,181,0.15) 12%,
    var(--gold-1) 35%,
    var(--gold-2) 50%,
    var(--gold-3) 65%,
    rgba(237,215,181,0.15) 88%,
    transparent 100%);
  opacity: 0.85;
  pointer-events: none;
}
.nav.is-scrolled {
  background: rgba(28,28,28,0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
}
.nav.is-scrolled::after { opacity: 1; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
}
.nav.is-scrolled .nav-logo-img { height: 19px; }
@media (max-width: 600px) {
  .nav-logo-img { height: 18px; }
  .nav.is-scrolled .nav-logo-img { height: 16px; }
}

.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.nav-links a { color: var(--white); text-decoration: none; opacity: 0.78; transition: opacity .2s; }
.nav-links a:hover { opacity: 1; }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ─── Buttons ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
  isolation: isolate;
}
.btn--gold {
  background: var(--gold-gradient);
  color: var(--bg);
  box-shadow: 0 10px 30px -10px rgba(176,140,70,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--gold::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent 50%);
  opacity: 0.5; pointer-events: none;
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn--outline:hover { background: var(--cream); color: var(--bg); }
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  text-transform: uppercase;
}
.btn--whatsapp:hover { background: var(--whatsapp-2); transform: translateY(-2px); }
.btn--ghost-dark {
  border: 1px solid rgba(37,37,37,0.4);
  color: var(--bg);
  background: transparent;
  text-transform: none;
  font-size: 16px;
  letter-spacing: 0;
}
.btn--ghost-dark:hover { background: rgba(37,37,37,0.06); }
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 86vh;
  padding: clamp(108px, 12vw, 168px) 0 clamp(48px, 5vw, 80px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-topbar {
  position: absolute;
  top: clamp(52px, 6.5vw, 104px);
  left: 0;
  right: 0;
  z-index: 6;
}
.hero-logo {
  display: inline-block;
}
.hero-logo-img {
  height: clamp(24px, 2.4vw, 32px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
.hero-bg {
  position: absolute;
  inset: -60px;
  background: url(assets/hero-bg.jpg) center / cover no-repeat;
  opacity: 0.16;
  filter: grayscale(60%) brightness(0.35) contrast(1.05) blur(22px);
  transform: scale(1.08);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 55% at 50% 38%, rgba(237,215,181,0.18) 0%, rgba(237,215,181,0.05) 45%, transparent 75%),
    linear-gradient(180deg, rgba(37,37,37,0.55) 0%, rgba(37,37,37,0.35) 50%, rgba(37,37,37,0.55) 100%);
}
.hero-orbs {
  position: absolute; inset: 0; pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: overlay;
  opacity: 0.32;
  filter: blur(0.5px);
}
.orb--cream {
  width: 110px; height: 110px;
  background: var(--cream);
  top: 14%; right: 6%;
  animation: floaty 9s ease-in-out infinite;
}
.orb--white {
  width: 68px; height: 68px;
  background: #fff;
  top: 72%; right: 24%;
  animation: floaty 11s ease-in-out -3s infinite;
}
.orb--small {
  width: 42px; height: 42px;
  background: var(--cream);
  top: 24%; left: 6%;
  animation: floaty 7s ease-in-out -2s infinite;
  opacity: 0.4;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.brand-logo {
  display: inline-block;
  margin-bottom: 32px;
}
.brand-logo img {
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
  height: 100%;
  width: auto;
  display: block;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 26px 0 36px;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.hero-trust {
  display: flex; gap: 24px; margin-top: 36px;
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.hero-trust > div {
  display: flex; align-items: center; gap: 8px;
}
.hero-trust .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 12px var(--cream);
}

/* Portrait — large, bleed-right, dramatic backlight */
.hero-portrait-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4%;
  width: 56%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1199px) and (min-width: 900px) {
  .hero-text { max-width: 50%; }
  .hero h1 { font-size: clamp(28px, 3.6vw, 44px); }
}
@media (max-width: 899px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: clamp(8px, 3vw, 18px);
    padding-bottom: clamp(24px, 5vw, 40px);
    gap: 0;
  }
  .hero-topbar {
    position: static;
    order: 1;
    text-align: center;
    margin-top: -14px;
    margin-bottom: 14px;
  }
  .hero-logo { display: inline-block; }
  .hero-logo-img { height: clamp(28px, 7.6vw, 38px); margin: 0 auto; }
  .hero-portrait-wrap {
    position: relative;
    width: 100%;
    right: 0;
    height: clamp(330px, 64vw, 440px);
    margin-top: 24px;
    order: 0;
  }
  /* Funde a base da foto via máscara — dissolve no fundo real, sem banda opaca */
  .hero-portrait-wrap::after { display: none; }
  .hero-content { position: relative; z-index: 5; }
  .hero-portrait {
    background-size: contain;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,0.35) 88%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 72%, rgba(0,0,0,0.35) 88%, transparent 100%);
  }
  .hero-content { order: 2; text-align: center; position: relative; z-index: 4; }
  .hero-text {
    max-width: none;
    text-align: center;
  }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
}
.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: url(assets/portrait.png) center bottom / contain no-repeat;
  z-index: 2;
}
.hero-portrait-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(237,215,181,0.55) 0%, rgba(237,215,181,0.22) 30%, rgba(237,215,181,0.06) 50%, transparent 70%);
  filter: blur(2px);
  z-index: 1;
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}
.hero-arabesque {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(237,215,181,0.08) 6deg, transparent 12deg, transparent 30deg, rgba(237,215,181,0.06) 36deg, transparent 42deg, transparent 60deg, rgba(237,215,181,0.08) 66deg, transparent 72deg);
  z-index: 0;
  opacity: 0.4;
  animation: rotate 80s linear infinite;
  pointer-events: none;
}
.hero-badge {
  display: none;
}

/* ─── Section: Pratica (cream block) ─── */
.pratica-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 720px) {
  .pratica-grid { grid-template-columns: 1fr 1fr; }
}
.pratica-item {
  display: flex; gap: 22px;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(37,37,37,0.04);
  border: 1px solid rgba(37,37,37,0.08);
  transition: transform .3s ease, background .3s ease;
}
.pratica-item:hover { transform: translateY(-3px); background: rgba(37,37,37,0.08); }
.pratica-item .icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg);
  color: var(--cream);
}
.pratica-item .icon svg { width: 22px; height: 22px; }
.pratica-item h4 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--bg);
}
.pratica-item p {
  margin: 0;
  font-size: 16px;
  color: rgba(37,37,37,0.7);
  line-height: 1.55;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head .lead { margin: 18px auto 0; }

/* ─── Testimonials carousel ─── */
.testimonials {
  position: relative;
  margin-top: 56px;
}
.testimonial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .testimonial-track { grid-template-columns: 1fr 1fr 1fr; }
}
.testimonial-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(237,215,181,0.04);
  border: 1px solid var(--hair-cream);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  display: flex; flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--cream);
  background: rgba(237,215,181,0.08);
}
.testimonial-card .stars {
  display: flex; gap: 4px;
  margin-bottom: 18px;
  color: var(--gold-1);
}
.testimonial-card blockquote {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
  flex: 1;
  position: relative;
}
.testimonial-card blockquote::before {
  content: "“";
  position: absolute;
  top: -28px; left: -8px;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 72px;
  color: var(--cream);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-card .person {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
}
.testimonial-card .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--gold-3));
  display: grid; place-items: center;
  font-weight: 700;
  color: var(--bg);
  font-size: 18px;
}
.testimonial-card .person b { display: block; font-size: 15px; }
.testimonial-card .person span { font-size: 13px; color: var(--text-muted); }
.testimonial-controls {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 40px;
}
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hair-cream);
  transition: width .3s ease, background .3s ease;
}
.testimonial-dot.is-active {
  width: 28px;
  background: var(--cream);
  border-radius: 4px;
}

/* ─── Resultados (marquee of real before/after) ─── */
.section--results {
  /* overflow contained at section level so marquee can full-bleed */
  position: relative;
  overflow: hidden;
}
.marquee {
  position: relative;
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* Resultados clínicos: marquee no sentido inverso */
.section--results .marquee-track { animation-direction: reverse; }
.case-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 380px);
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #2a2a2a;
  border: 1px solid var(--hair-cream);
  transition: transform .35s ease, border-color .35s ease;
}
.case-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--cream);
  z-index: 2;
}
.case-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-tile-labels {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.case-tile-labels span {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(28,28,28,0.7);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.case-tile-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(15,15,15,0.85) 50%);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  color: var(--white);
}
.case-tile-caption b {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.case-tile-caption span {
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.results-fine {
  margin: 40px auto 0;
  max-width: 60ch;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Video testimonials (3 × 9:16) ─── */
.section--results { padding-bottom: clamp(32px, 4vw, 56px); }
.section--video-testimonials {
  position: relative;
  padding-top: clamp(40px, 5vw, 64px);
}
.video-grid {
  margin-top: 40px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
}
@media (min-width: 720px) {
  .video-grid {
    gap: 28px;
  }
}
.video-card {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-card-frame {
  position: relative;
  aspect-ratio: 9/16;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #2a2a2a, #1a1a1a);
  border: 1px solid var(--hair-cream);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
  transition: transform .35s, border-color .35s;
  /* button reset */
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  display: block;
}
.video-card:hover .video-card-frame {
  transform: translateY(-4px);
  border-color: var(--cream);
}
.video-card-frame:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}
.video-card-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%);
  color: var(--cream);
  transition: background .25s;
}
.video-card-play::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(237,215,181,0.6);
  position: absolute;
}
.video-card-play svg {
  position: relative;
  transform: translateX(1px);
}
.video-card:hover .video-card-play {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}

/* Lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: vlb-fade .2s ease;
}
@keyframes vlb-fade { from { opacity: 0; } to { opacity: 1; } }
.video-lightbox-frame {
  position: relative;
  width: min(100%, 420px);
  max-height: calc(100vh - 80px);
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
@media (min-height: 760px) {
  .video-lightbox-frame { width: min(100%, 460px); }
}
.video-lightbox-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.video-lightbox-meta {
  position: absolute;
  left: 14px;
  bottom: 56px;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  pointer-events: none;
}
.video-lightbox-meta b { display: block; font-size: 15px; font-weight: 600; }
.video-lightbox-meta span { font-size: 12px; color: rgba(237,215,181,0.75); }
.video-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(237,215,181,0.4);
  background: rgba(0,0,0,0.5);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
  z-index: 2;
}
.video-lightbox-close:hover {
  background: rgba(237,215,181,0.15);
  border-color: var(--cream);
  transform: scale(1.05);
}
.video-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 40%, rgba(237,215,181,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #2a2a2a, #1a1a1a);
}
.video-card-placeholder svg {
  opacity: 0.5;
  padding: 18px;
  border-radius: 50%;
  border: 1px solid var(--hair-cream);
  box-sizing: content-box;
}
.video-card-placeholder span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.video-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  padding: 0 4px;
}
.video-card-meta b {
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.video-card-meta span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.2;
}
@media (min-width: 720px) {
  .video-card-meta b { font-size: 15px; }
  .video-card-meta span { font-size: 13px; }
}
@media (max-width: 480px) {
  .video-card-meta { padding: 0 2px; text-align: center; }
  .video-card-meta b { font-size: 12.5px; }
  .video-card-meta span { font-size: 11px; }
  .video-card-play::before { width: 36px; height: 36px; }
  .video-card-play svg { width: 18px; height: 18px; }
}

/* ─── Modules accordion ─── */
.accordion {
  margin-top: 48px;
  border-top: 1px solid rgba(37,37,37,0.16);
}
.accordion--covers {
  border-top: none;
  display: grid;
  gap: 20px;
  align-items: start;
}
@media (min-width: 760px) {
  .accordion--covers { grid-template-columns: 1fr 1fr; }
}
.acc-item {
  border-bottom: 1px solid rgba(37,37,37,0.16);
}
.accordion--covers .acc-item {
  border-bottom: none;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.25);
  transition: box-shadow .3s, transform .3s;
}
.accordion--covers .acc-item:hover {
  box-shadow: 0 20px 44px -22px rgba(0,0,0,0.35);
}
.accordion--covers .acc-item.is-open {
  box-shadow: 0 24px 50px -22px rgba(0,0,0,0.4);
}

/* Cover header */
.acc-cover {
  display: block;
  width: 100%;
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
}
.acc-cover-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.acc-cover:hover .acc-cover-img { transform: scale(1.03); }
.acc-cover-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}
.acc-cover-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.acc-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(237,215,181,0.55);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background .25s, color .25s, transform .3s, border-color .25s;
}
.acc-cover:hover .acc-toggle { border-color: var(--cream); }
.acc-item.is-open .acc-toggle {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
  transform: rotate(45deg);
}
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.acc-item.is-open .acc-body { grid-template-rows: 1fr; }
.acc-body-inner { overflow: hidden; }
.accordion--covers .acc-lessons {
  padding: 8px 24px 24px;
}
.acc-lessons {
  list-style: none;
  margin: 0;
  padding: 0 0 22px 64px;
  display: grid;
  gap: 2px;
}
.acc-lesson {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 14px 11px 0;
  border-top: 1px solid rgba(37,37,37,0.09);
}
.acc-lesson:first-child { border-top: none; }
.acc-lesson-n {
  flex-shrink: 0;
  width: 36px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-3);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.acc-lesson-title {
  flex: 1;
  min-width: 0;
  font-size: 15.5px;
  line-height: 1.4;
  color: rgba(37,37,37,0.82);
  text-wrap: pretty;
}
.acc-lesson-dur {
  flex-shrink: 0;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(37,37,37,0.45);
  padding: 2px 9px;
  border: 1px solid rgba(37,37,37,0.16);
  border-radius: 999px;
  white-space: nowrap;
  align-self: center;
}
@media (max-width: 600px) {
  .accordion--covers .acc-lessons { padding: 4px 16px 18px; }
  .acc-lessons { padding-left: 0; }
  .acc-lesson { gap: 10px; align-items: flex-start; }
  .acc-lesson-n { width: 30px; font-size: 12px; }
  .acc-lesson-title { font-size: 14px; }
  .acc-lesson-dur { font-size: 11px; padding: 2px 7px; }
  .acc-toggle { width: 34px; height: 34px; }
}

/* ─── Bonus cards ─── */
.section--bonus { overflow: hidden; }
.bonus-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
  border: 1px solid var(--hair-cream);
}
.bonus-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-marquee { margin-top: 40px; }
.marquee-track--bonus {
  animation-duration: 55s;
  gap: 28px;
}

.bonus-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 78vw, 420px);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hair-cream);
  background: linear-gradient(180deg, rgba(237,215,181,0.06), rgba(237,215,181,0.01));
  transition: transform .35s, border-color .35s, background .35s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 720px) {
  .bonus-card { width: clamp(340px, 36vw, 460px); padding: 32px; gap: 20px; }
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--cream);
  background: linear-gradient(180deg, rgba(237,215,181,0.10), rgba(237,215,181,0.02));
  z-index: 2;
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(237,215,181,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.bonus-card:hover::before { opacity: 1; }

.bonus-visual {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hair-cream);
  flex-shrink: 0;
}
@media (min-width: 720px) {
  .bonus-visual { aspect-ratio: 16/9; }
}

/* ─── Branded bonus covers ─── */
.bonus-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--cream);
  font-family: var(--font-sans), system-ui;
  isolation: isolate;
}
.bc-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(237,215,181,0.18), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(237,215,181,0.08), transparent 60%),
    linear-gradient(135deg, #2c2a26 0%, #1b1916 100%);
  z-index: 1;
}
.bonus-cover--warm .bc-bg {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(237,215,181,0.22), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(180,130,60,0.08), transparent 60%),
    linear-gradient(135deg, #2e2a23 0%, #1a1612 100%);
}
.bonus-cover--cool .bc-bg {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(237,215,181,0.14), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(120,140,160,0.06), transparent 60%),
    linear-gradient(135deg, #25272a 0%, #161718 100%);
}
.bonus-cover--deep .bc-bg {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(237,215,181,0.14), transparent 55%),
    linear-gradient(135deg, #1f1d1a 0%, #110f0d 100%);
}
.bc-dots-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  color: var(--cream);
  opacity: 0.07;
  mask-image: linear-gradient(135deg, transparent 0%, #000 35%, #000 65%, transparent 100%);
}
.bc-dots {
  width: 100%;
  height: 100%;
  display: block;
}
.bc-corners {
  position: absolute;
  inset: 8px;
  z-index: 4;
  color: var(--cream);
  fill: none;
  stroke: currentColor;
  stroke-width: 0.5;
  opacity: 0.7;
  pointer-events: none;
}
.bc-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 18px;
  width: auto;
  z-index: 5;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.bc-num {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-52%);
  font-family: var(--font-display), serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(76px, 11vw, 128px);
  line-height: 0.85;
  color: var(--cream);
  opacity: 0.16;
  letter-spacing: -0.02em;
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}
.bc-motif {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: 38%;
  max-width: 150px;
  aspect-ratio: 1;
  color: var(--cream);
  z-index: 4;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.bc-motif svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bc-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-divider {
  position: absolute;
  bottom: 32px;
  left: 16px;
  width: 36px;
  height: 1px;
  background: var(--cream);
  opacity: 0.45;
  z-index: 5;
}
@media (min-width: 720px) {
  .bc-logo { top: 18px; left: 18px; height: 20px; }
  .bc-num { font-size: clamp(96px, 11vw, 160px); right: 7%; }
  .bc-motif { left: 9%; width: 36%; max-width: 170px; }
  .bc-label { bottom: 16px; left: 18px; font-size: 10px; }
  .bc-divider { bottom: 36px; left: 18px; width: 42px; }
}
.bonus-body { display: flex; flex-direction: column; flex: 1; text-align: left; }
.bonus-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.bonus-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--cream);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.bonus-value {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.bonus-value s { text-decoration-color: rgba(237,215,181,0.6); margin-right: 4px; }
.bonus-card h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 10px;
  text-wrap: balance;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.bonus-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ─── Pricing ─── */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
  align-items: stretch;
}
@media (min-width: 900px) { .pricing-wrap { grid-template-columns: 1.05fr 1fr; } }
.pricing-breakdown {
  background: rgba(37,37,37,0.04);
  border: 1px solid rgba(37,37,37,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.pricing-breakdown h4 {
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.6);
  font-weight: 600;
}
.breakdown-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(37,37,37,0.08);
}
.breakdown-row:last-child { border-bottom: none; padding-top: 22px; font-weight: 700; }
.breakdown-row.is-total {
  border-top: 2px solid var(--bg);
  margin-top: 8px;
  padding-top: 22px;
  font-size: 18px;
}
.breakdown-row .name { color: var(--bg); font-size: 15px; flex: 1; padding-right: 16px; }
.breakdown-row .price { color: rgba(37,37,37,0.55); font-size: 14px; text-decoration: line-through; }
.breakdown-row.is-total .name { font-size: 17px; }
.breakdown-row.is-total .price { color: var(--bg); text-decoration: none; font-size: 18px; }

.pricing-offer {
  background: var(--bg);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-offer::before {
  content: "";
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 140%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(237,215,181,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-offer .logo-mark { margin-bottom: 14px; display: flex; justify-content: center; }
.pricing-offer .logo-mark img { height: 36px; width: auto; }
.pricing-offer .from {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 6px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
}
.pricing-offer .from s {
  color: rgba(255,255,255,0.5);
  position: relative;
}
.pricing-offer .price-big {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 8px;
  letter-spacing: -0.03em;
}
.pricing-offer .price-or {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.pricing-offer .price-or b { color: var(--white); }
.pricing-offer .countdown {
  display: flex; gap: 10px;
  margin-bottom: 28px;
}
.countdown-cell {
  background: rgba(237,215,181,0.08);
  border: 1px solid var(--hair-cream);
  border-radius: 8px;
  min-width: 56px;
  padding: 10px 8px;
  text-align: center;
}
.countdown-cell b {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.countdown-cell span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pricing-offer .seals {
  display: flex; gap: 20px;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.pricing-offer .seals > div { display: flex; align-items: center; gap: 6px; }

/* ─── Guarantee ─── */
.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-top: 24px;
}
.guarantee-text {
  max-width: 720px;
}

.guarantee-text h2 { color: var(--cream); margin-bottom: 20px; }
.guarantee-text p { color: var(--text-muted); font-size: 17px; line-height: 1.65; margin: 0 0 14px; }

/* ─── Certificate (real image) ─── */
.certificate-stage {
  margin-top: 40px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}
.certificate-real {
  position: relative;
  width: min(820px, 95%);
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 60px 120px -40px rgba(0,0,0,0.45);
  transform: rotateX(2deg) rotateY(-1.5deg);
  transition: transform .8s ease;
}
.certificate-real:hover { transform: rotateX(0deg) rotateY(0deg); }
.certificate-real img {
  display: block;
  width: 100%;
  height: auto;
}
/* Subtle vignette + edge highlight for depth */
.certificate-real::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 18%),
    radial-gradient(120% 80% at 50% 100%, rgba(0,0,0,0.15), transparent 60%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
@media (max-width: 600px) {
  .certificate-real {
    transform: none;
    border-radius: 4px;
  }
}
.certificate {
  position: relative;
  width: min(840px, 95%);
  aspect-ratio: 1.414/1;
  background: linear-gradient(135deg, #f9eed3 0%, #ecd6b1 100%);
  color: var(--bg);
  border-radius: 8px;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.4) inset;
  padding: 6%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform-style: preserve-3d;
  transform: rotateX(2deg);
  transition: transform .8s;
}
.certificate:hover { transform: rotateX(0deg) rotateY(-1deg); }
.cert-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(37,37,37,0.4);
  border-radius: 4px;
  pointer-events: none;
}
.cert-frame::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(37,37,37,0.2);
  border-radius: 2px;
}
.cert-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.6);
}
.cert-body {
  display: grid; place-items: center;
  text-align: center;
  gap: 14px;
}
.cert-body .pre {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.65);
}
.cert-body h3 {
  font-size: clamp(22px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--bg);
  text-wrap: balance;
}
.cert-body .name {
  font-family: 'Bricolage Grotesque', cursive;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--bg);
  border-bottom: 1px solid rgba(37,37,37,0.3);
  padding: 8px 32px;
  margin-top: 12px;
}
.cert-body .desc {
  font-size: 13px;
  max-width: 60ch;
  color: rgba(37,37,37,0.7);
  line-height: 1.55;
}
.cert-foot {
  display: flex; justify-content: space-between; align-items: end;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.65);
}
.cert-foot .sig {
  border-top: 1px solid rgba(37,37,37,0.4);
  padding-top: 6px;
  min-width: 200px;
  text-align: center;
}
.cert-foot .sig b {
  display: block; font-size: 13px; color: var(--bg); margin-bottom: 4px;
  font-family: 'Bricolage Grotesque', cursive;
  font-style: italic;
}
.cert-stamp {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(37,37,37,0.7);
  display: grid; place-items: center;
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37,37,37,0.8);
  font-weight: 700;
  line-height: 1.2;
  background: rgba(255,255,255,0.2);
  padding: 6px;
}

/* ─── FAQ ─── */
.faq-list {
  margin-top: 32px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--hair-cream);
  border-radius: var(--radius);
  background: rgba(237,215,181,0.02);
  overflow: hidden;
  transition: background .25s, border-color .25s;
}
.faq-item.is-open {
  background: rgba(237,215,181,0.06);
  border-color: var(--cream);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
}
.faq-q .toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hair-cream);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s, background .25s, color .25s;
  color: var(--cream);
}
.faq-item.is-open .toggle {
  transform: rotate(45deg);
  background: var(--cream);
  color: var(--bg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner {
  overflow: hidden;
}
.faq-item.is-open .faq-a-inner { padding: 0 28px 24px; }
.faq-a-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ─── Support ─── */
.support {
  text-align: center;
  background: var(--cream);
  color: var(--bg);
  padding: clamp(40px, 5vw, 72px) 0;
}
.support-link {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 12px 26px;
  border-radius: 100px;
  border: 1px solid rgba(37,37,37,0.4);
  color: var(--bg);
  font-size: 15px;
  text-decoration: none;
  transition: background .25s;
}
.support-link:hover { background: rgba(37,37,37,0.06); }
.support h2 {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--bg);
}

/* ─── Footer ─── */
.footer {
  position: relative;
  background: var(--bg-2);
  color: rgba(255,255,255,0.55);
  padding: 44px 0 22px;
  font-size: 13.5px;
  line-height: 1.55;
}
.footer-divider {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(237,215,181,0.08) 18%,
    rgba(234,187,106,0.32) 50%,
    rgba(237,215,181,0.08) 82%,
    transparent 100%);
}

/* Grid horizontal compacto: brand | nav | suporte | redes */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr auto;
    gap: 48px;
    align-items: start;
  }
}

/* Brand: logo + tagline */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.95;
}
.footer-tagline {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.55;
  max-width: 320px;
}

/* Headers das colunas */
.footer-col h5,
.footer-social-wrap h5 {
  margin: 0 0 14px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h5::after,
.footer-social-wrap h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 20px; height: 1px;
  background: linear-gradient(90deg, var(--gold-1), transparent);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease;
  display: inline-block;
}
.footer-col ul a:hover {
  color: var(--cream);
}

/* Redes sociais (coluna direita) */
.footer-social-wrap {
  min-width: 90px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(237,215,181,0.18);
  color: var(--cream);
  text-decoration: none;
  transition: all .25s ease;
}
.footer-social a:hover {
  border-color: rgba(234,187,106,0.55);
  background: rgba(234,187,106,0.08);
  color: var(--gold-1);
  transform: translateY(-1px);
}

/* Bottom: legal centralizado */
.footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(237,215,181,0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.footer-sep {
  color: rgba(234,187,106,0.4);
  font-size: 9px;
}

@media (max-width: 759px) {
  .footer {
    padding: 36px 0 20px;
  }
  .footer-grid {
    gap: 32px;
  }
}

/* ─── Footer minimal (override) ─── */
.footer-min {
  padding: 12px 0 16px;
}
.footer-min-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-min-logo img {
  height: 24px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity .25s ease;
}
.footer-min-logo img:hover {
  opacity: 1;
}
.footer-min-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  font-size: 11.5px;
  letter-spacing: 0.01em;
}
.footer-min-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s ease;
  cursor: pointer;
}
.footer-min-links a:hover {
  color: var(--cream);
}
.footer-min-links .footer-sep {
  color: rgba(234,187,106,0.35);
  font-size: 7px;
}
.footer-min-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.32);
  padding-top: 10px;
  border-top: 1px solid rgba(237,215,181,0.05);
  width: 100%;
  max-width: 440px;
  letter-spacing: 0.01em;
}
.footer-min-legal .footer-sep {
  color: rgba(234,187,106,0.3);
  font-size: 7px;
}
@media (min-width: 760px) {
  .footer-min {
    padding: 28px 0 20px;
  }
  .footer-min-inner {
    gap: 16px;
  }
  .footer-min-logo img {
    height: 26px;
  }
  .footer-min-links {
    font-size: 12px;
    gap: 8px 16px;
  }
  .footer-min-legal {
    font-size: 11px;
  }
}


/* Mobile: compacta a ultima section antes do footer */
@media (max-width: 759px) {
  main > .section:last-child {
    padding-bottom: 16px;
  }
}

/* Mobile: reduz tamanho de todos os .btn (~50%) */
@media (max-width: 899px) {
  .btn {
    padding: 11px 20px;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    gap: 6px;
    border-radius: 8px;
  }
  .btn--whatsapp svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ─── Mobile polish (≤ 600px) ─── */
@media (max-width: 600px) {
  .shell { padding: 0 20px; }

  /* Hero: respiro melhor, h1 menos dominante */
  .hero h1 { font-size: clamp(28px, 7.2vw, 38px); line-height: 1.1; }
  .hero-sub { font-size: 15.5px; line-height: 1.55; margin-top: 14px; }

  /* Section heads mais respiráveis */
  .h2 { font-size: clamp(26px, 6.6vw, 36px); line-height: 1.15; }
  .lead { font-size: 15px; line-height: 1.55; }
  .section-head .lead { margin-top: 14px; }
  .section { padding: 56px 0; }

  /* Pratica: cards mais compactos */
  .pratica-item { gap: 14px; }
  .pratica-item h4 { font-size: 17px; }
  .pratica-item p { font-size: 14.5px; }

  /* Marquees: itens menores cabem 1.1 por tela = preview do próximo */
  .case-tile { width: 78vw; max-width: 320px; }
  .bonus-card { width: 80vw; max-width: 340px; padding: 22px; gap: 14px; }
  .marquee-track--modules .module { width: 78vw; max-width: 320px; }

  /* Pricing breakdown: nomes longos não brigam mais com preços */
  .pricing-breakdown { padding: 22px; }
  .breakdown-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  .breakdown-row .name { padding-right: 0; font-size: 14px; }
  .breakdown-row .price { font-size: 13px; }
  .breakdown-row.is-total {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  /* Pricing offer: respiro */
  .pricing-offer { padding: 32px 22px; }
  .pricing-offer .from { font-size: 15px; }
  .pricing-offer .price-or { font-size: 14px; margin-bottom: 28px; }
  .pricing-offer .seals { gap: 12px; font-size: 11px; flex-wrap: wrap; justify-content: center; }

  /* Certificate: proporção mais alta no mobile, tipografia legível,
     carimbo menor e mais alinhado */
  .certificate {
    aspect-ratio: 1/1.05;
    padding: 26px 22px;
    border-radius: 6px;
  }
  .cert-frame { inset: 10px; }
  .cert-head { font-size: 8.5px; letter-spacing: 0.18em; }
  .cert-body { gap: 10px; }
  .cert-body .pre { font-size: 10px; letter-spacing: 0.18em; }
  .cert-body h3 { font-size: 18px; line-height: 1.2; }
  .cert-body .name { font-size: 22px; padding: 6px 16px; margin-top: 6px; }
  .cert-body .desc { font-size: 11px; line-height: 1.5; }
  .cert-foot { font-size: 9px; letter-spacing: 0.1em; gap: 12px; }
  .cert-foot .sig { min-width: 0; font-size: 9px; }
  .cert-foot .sig b { font-size: 11px; }
  .cert-stamp {
    width: 56px; height: 56px;
    font-size: 7px;
    bottom: 6%;
    padding: 4px;
  }

  /* Guarantee seal: encolhe um pouco */
  .guarantee-seal { width: 200px; }
  .guarantee-text p { font-size: 15px; line-height: 1.6; }

  /* FAQ: alvos de toque ok, texto mais legível */
  .faq-q { font-size: 15px; padding: 16px 14px; }
  .faq-a-inner p { font-size: 14.5px; }

  /* Support: respiro e botão não estoura largura */
  .support { padding: 48px 0; }
  .support-link { font-size: 13px; padding: 9px 18px; }
  .support h2 { font-size: 22px; margin-bottom: 22px; }
  .support .btn--whatsapp { width: 100%; max-width: 320px; }

  /* Testimonial: cards mais compactos */
  .testimonial-card { padding: 22px; }
  .testimonial-card blockquote { font-size: 15px; }

  /* Footer: respiro */
  .footer-min-inner { gap: 14px; }
}

/* Tablet small (601-800): ajustes intermediários */
@media (min-width: 601px) and (max-width: 800px) {
  .case-tile { width: 56vw; max-width: 360px; }
  .bonus-card { width: 60vw; max-width: 380px; }
}

/* ─── Sticky CTA (mobile) ─── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px env(safe-area-inset-bottom);
  background: rgba(28,28,28,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair-cream);
  z-index: 40;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; padding: 16px; font-size: 15px; }
@media (min-width: 800px) { .sticky-cta { display: none; } }

/* ─── Scroll reveal ─── */
/* Some preview environments throttle JS-driven animations to currentTime=0,
   leaving opacity stuck at 0. Default to visible; animation is opt-in. */
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.reveal { opacity: 1; }
.reveal.is-in { animation: reveal-in 0.7s ease 1; }
.reveal-delay-1.is-in { animation-delay: 0.08s; }
.reveal-delay-2.is-in { animation-delay: 0.16s; }
.reveal-delay-3.is-in { animation-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal.is-in { animation: none; }
}

/* ─── Utilities ─── */
.center { text-align: center; }
.mt-lg { margin-top: 36px; }
.mt-xl { margin-top: 48px; }
.flex-center { display: flex; justify-content: center; }
