/* ============================================================
   VENDER LIBERTA 40K — Landing Page Styles
   ============================================================ */

@import url('./assets/fonts/fonts.css');

/* --- VARIABLES --- */
:root {
  --bg: #0c0103;
  --wine-950: #180307;
  --wine-900: #310611;
  --wine-850: #4e0d1d;
  --wine-800: #7e0f25;
  --wine-700: #a51531;
  --gold-500: #d7b38a;
  --gold-300: #f6e9d8;
  --gold-200: #fff3e5;
  --paper: #f7efe6;
  --paper-soft: #fff9f3;
  --ink: #2f1218;
  --ink-soft: #6f5259;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --container: 1120px;
  --container-narrow: 780px;
  --gutter: 24px;
  --section-py: 100px;
  --section-py-sm: 64px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
.mobile-br { display: none; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gold-300);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
}

/* --- SECTION BACKGROUNDS --- */
.section--wine {
  position: relative;
  background: linear-gradient(175deg, var(--wine-900) 0%, var(--bg) 100%);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.section--wine-intense {
  position: relative;
  background: linear-gradient(175deg, var(--wine-850) 0%, var(--wine-900) 40%, var(--bg) 100%);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.section--wine-deep {
  position: relative;
  background: linear-gradient(175deg, var(--wine-950) 0%, var(--bg) 100%);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.section--cream {
  position: relative;
  background: var(--paper);
  padding: var(--section-py) 0;
  overflow: hidden;
}

/* --- GLOWS --- */
.hero__glow,
.diferencial__glow,
.pilares__glow,
.capaz__glow,
.pricing__glow,
.bio__glow,
.cta-final__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,179,138,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__glow { top: -200px; right: -100px; }
.diferencial__glow { bottom: -200px; left: -200px; }
.pilares__glow { top: -100px; left: 50%; transform: translateX(-50%); }
.capaz__glow { bottom: -200px; right: -200px; }
.pricing__glow {
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(215,179,138,0.12) 0%, transparent 60%);
}
.bio__glow { top: -100px; right: -200px; }
.cta-final__glow { bottom: -100px; left: -100px; }
.cream-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,179,138,0.06) 0%, transparent 70%);
  pointer-events: none;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 0;
}

/* --- KICKER --- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-500);
}
.kicker--dark {
  color: var(--ink-soft);
}
.kicker--dark::before {
  background: var(--ink-soft);
}

/* --- TYPOGRAPHY --- */
.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title--light {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold-200);
}
.section-title--dark {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
}
.section-text--light {
  color: rgba(246,233,216,0.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
}
.section-text--dark {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, #f2dcc0, #d7b38a 55%, #b98a59);
  color: var(--wine-950);
  box-shadow: 0 4px 20px rgba(215,179,138,0.2);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(215,179,138,0.25), 0 8px 30px rgba(215,179,138,0.15);
}
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
.btn--lg {
  padding: 18px 40px;
  font-size: 15px;
  border-radius: 10px;
}
.btn--sm {
  padding: 12px 24px;
  font-size: 12px;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* --- GRIDS --- */
.grid {
  display: grid;
  gap: 20px;
}
.grid--3x2 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--bonus {
  grid-template-columns: repeat(8, 1fr);
}
.grid--bonus .bonus-card {
  grid-column: span 2;
}
/* 9ª card começa na coluna 2 → 3 cards ocupam cols 2-3, 4-5, 6-7 → 1 col vazia em cada lado = centralizado */
.grid--bonus .bonus-card--row3:nth-child(9) {
  grid-column: 2 / span 2;
}

/* --- CARDS (GLASS on wine) --- */
.card--glass {
  background: rgba(255, 248, 236, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 240, 214, 0.12);
  border-top: 1px solid rgba(215, 179, 138, 0.4);
  box-shadow: inset 0 1px 0 rgba(255,240,214,0.1), 0 8px 32px rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card--glass:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,240,214,0.1), 0 16px 48px rgba(0,0,0,0.3);
}

/* --- CARDS (CREAM on cream sections) --- */
.card--cream {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(215,179,138,0.18);
  border-top: 1px solid rgba(215,179,138,0.35);
  box-shadow: 0 24px 70px rgba(23,2,8,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card--cream:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(23,2,8,0.14), inset 0 1px 0 rgba(255,255,255,0.6);
}

.card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-500);
  opacity: 0.5;
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-200);
  margin-bottom: 10px;
  line-height: 1.25;
}
.card__title--dark {
  color: var(--ink);
}
.card__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(246,233,216,0.65);
}
.card__text--dark {
  color: var(--ink-soft);
}

/* Cursor glow on pillar/bonus cards */
.pillar-card .card-glow,
.bonus-card .card-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,179,138,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pillar-card:hover .card-glow,
.bonus-card:hover .card-glow {
  opacity: 1;
}

/* ============================================================
   SECTION-SPECIFIC STYLES
   ============================================================ */

/* --- 1. HERO --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('./assets/hero-bg-desktop.jpg') 30% center / cover no-repeat, var(--bg);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,1,3,1) 0%, rgba(12,1,3,0.97) 28%, rgba(12,1,3,0.5) 42%, rgba(12,1,3,0.0) 56%, transparent 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-left: 0;
  margin-right: auto;
}
.hero__logo {
  max-width: 380px;
  width: 100%;
  margin-bottom: 24px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero__mobile-photo {
  display: none;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 17px;
  color: rgba(246,233,216,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero__trust {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(215,179,138,0.6);
  letter-spacing: 0.04em;
}

/* --- SOCIAL PROOF STRIP --- */
.proof-strip {
  background: var(--wine-950);
  border-top: 1px solid rgba(215,179,138,0.12);
  border-bottom: 1px solid rgba(215,179,138,0.12);
  overflow: hidden;
  padding: 18px 0;
}
.proof-strip__track {
  display: flex;
  gap: 40px;
  animation: proof-scroll 25s linear infinite;
  width: max-content;
}
.proof-strip__card {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.proof-strip__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(215,179,138,0.25);
}
.proof-strip__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}
.proof-strip__label {
  display: block;
  font-size: 12px;
  color: rgba(246,233,216,0.55);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
@keyframes proof-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* --- 2. DIFERENCIAL --- */
.diferencial {
  padding-top: 80px;
}
.negation-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.negation-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: rgba(246,233,216,0.8);
  line-height: 1.6;
}
.negation-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 2px;
}
.negation-list__item--no::before {
  background: rgba(165,21,49,0.3);
  border: 1px solid rgba(165,21,49,0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cline x1='3' y1='3' x2='11' y2='11' stroke='%23a51531' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='11' y1='3' x2='3' y2='11' stroke='%23a51531' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.negation-list__item--yes::before {
  background: rgba(215,179,138,0.15);
  border: 1px solid rgba(215,179,138,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpolyline points='3,7 6,10 11,4' fill='none' stroke='%23d7b38a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pullquote {
  margin-top: 40px;
  padding: 24px 32px;
  border-left: 3px solid var(--gold-500);
  background: rgba(215,179,138,0.04);
  border-radius: 0 12px 12px 0;
}
.pullquote p {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-300);
  line-height: 1.45;
}

/* --- 3. ENTREGAVEIS (cream section styles handled by grid+card--cream) --- */

/* --- 4. PILARES --- */
.pillar-card {
  text-align: center;
}

/* --- 5. ANTES E DEPOIS --- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.compare__panel {
  border-radius: 16px;
  padding: 36px 32px;
}
.compare__panel--antes {
  background: rgba(165,21,49,0.08);
  border: 1px solid rgba(165,21,49,0.2);
}
.compare__panel--depois {
  background: rgba(215,179,138,0.08);
  border: 1px solid rgba(215,179,138,0.25);
}
.compare__heading {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.compare__panel--antes .compare__heading { color: var(--wine-700); }
.compare__panel--depois .compare__heading { color: #8a5c1e; }
.compare__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.compare__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
}
.compare__panel--antes .compare__list li::before {
  background: rgba(165,21,49,0.15);
  border: 1.5px solid rgba(165,21,49,0.4);
}
.compare__panel--depois .compare__list li::before {
  background: rgba(215,179,138,0.35);
  border: 2px solid rgba(215,179,138,0.8);
}
.compare__panel--depois .compare__list li {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* --- 7. PRICING --- */
.pricing__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pricing__logo {
  max-width: 200px;
  margin: 0 auto 40px;
}
.pricing__anchor {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: rgba(255,248,236,0.04);
  border: 1px solid rgba(215,179,138,0.15);
  border-radius: 16px;
}
.pricing__anchor-text {
  font-size: 16px;
  color: rgba(246,233,216,0.7);
  margin-bottom: 16px;
}
.pricing__anchor-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing__anchor-numbers span {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-500);
}
.pricing__anchor-sep {
  font-size: 24px !important;
  color: rgba(215,179,138,0.4) !important;
}
.pricing__anchor-bottom {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--wine-700);
  display: inline-block;
  background: linear-gradient(transparent 15%, rgba(215,179,138,0.55) 15%);
  padding: 2px 6px;
  border-radius: 3px;
}
.pricing__from {
  font-size: 18px;
  color: rgba(246,233,216,0.5);
  margin-bottom: 8px;
}
.pricing__from s {
  text-decoration: line-through;
}
.pricing__price {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1.1;
  margin-bottom: 8px;
}
.pricing__cash {
  font-size: 18px;
  color: rgba(246,233,216,0.6);
  margin-bottom: 24px;
}
.pricing__guarantee {
  font-size: 14px;
  color: rgba(246,233,216,0.55);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.pricing__secure {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(215,179,138,0.5);
  letter-spacing: 0.04em;
}

/* --- 8. BONUS --- */
.bonus-card {
  text-align: center;
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bonus-card__img {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 16px;
}
.bonus-card__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.bonus-card__number {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(215,179,138,0.1);
  border: 1px solid rgba(215,179,138,0.22);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.bonus-card__number--inedito {
  background: rgba(165,21,49,0.15);
  border-color: rgba(165,21,49,0.4);
  color: var(--wine-700);
}
.bonus-card--highlight {
  border-color: rgba(165,21,49,0.25) !important;
  background: linear-gradient(145deg, #fff9f3, #fff3e8) !important;
}
.bonus-card .card__title {
  font-size: 15px;
  line-height: 1.4;
}

/* --- 9. BIO --- */
.bio__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bio__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(215,179,138,0.15);
}
.bio__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(215,179,138,0.12);
}

/* --- 10. DEPOIMENTOS --- */
.prova-faturamento {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(215,179,138,0.12);
}
.prova-faturamento img {
  width: 100%;
}

.video-card {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card .card__title,
.video-card .card__text {
  padding: 0 20px;
}
.video-card .card__title {
  padding-top: 16px;
  font-size: 18px;
}
.video-card .card__text {
  padding-bottom: 20px;
  font-size: 13.5px;
}

/* --- Grade de vídeos 5 colunas --- */
.dep-videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 1080px) {
  .dep-videos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Galeria scroll infinito --- */
.dep-galeria-scroll {
  margin: 0 0 12px;
  overflow: hidden;
}
.dep-galeria-scroll__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.dep-galeria-scroll__track.is-dragging { cursor: grabbing; }
.dep-galeria-scroll__track img {
  height: 200px;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(215,179,138,0.12);
  flex-shrink: 0;
  object-fit: cover;
  pointer-events: none;
}

/* --- Label WhatsApp --- */
.dep-whatsapp-label {
  text-align: center;
  font-size: 13px;
  color: rgba(215,179,138,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 40px 0 16px;
}

/* --- WhatsApp scroll --- */
.dep-whatsapp-scroll {
  overflow: hidden;
  margin-bottom: 56px;
}
.dep-whatsapp-scroll__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.dep-whatsapp-scroll__track.is-dragging { cursor: grabbing; }
.dep-whatsapp-scroll__track img {
  height: 240px;
  width: auto;
  border-radius: 16px;
  border: 1px solid rgba(215,179,138,0.15);
  flex-shrink: 0;
  object-fit: cover;
  pointer-events: none;
}

/* --- 11. FAQ --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accordion__item {
  border: 1px solid rgba(215,179,138,0.18);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease;
}
.accordion__trigger:hover {
  background: rgba(215,179,138,0.06);
}
.accordion__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  color: var(--ink-soft);
  transition: transform 0.3s ease;
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion__item.is-open .accordion__body {
  max-height: 200px;
}
.accordion__body p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* --- 12. CTA FINAL --- */
.cta-final__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-final__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.cta-final__option {
  padding: 24px;
  border-radius: 14px;
}
.cta-final__option--a {
  background: rgba(165,21,49,0.08);
  border: 1px solid rgba(165,21,49,0.2);
}
.cta-final__option--b {
  background: rgba(215,179,138,0.08);
  border: 1px solid rgba(215,179,138,0.25);
}
.cta-final__option h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-final__option--a h3 { color: rgba(165,21,49,0.7); }
.cta-final__option--b h3 { color: var(--gold-500); }
.cta-final__option p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(246,233,216,0.65);
}
.cta-final__photo img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  margin: 0 auto;
}

/* --- CTA ROW --- */
.cta-row {
  text-align: center;
  margin-top: 48px;
}

/* --- STICKY CTA BAR --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12,1,3,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(215,179,138,0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-300);
}

/* --- VIDEO MODAL --- */
.video-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.is-open {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(12,1,3,0.9);
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: -40px; right: 0;
  font-size: 32px;
  color: var(--gold-300);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.video-modal__content video {
  width: 100%;
  border-radius: 12px;
  background: #000;
}

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--bonus {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--bonus .bonus-card,
  .grid--bonus .bonus-card--row3:nth-child(9) {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  :root {
    --section-py: 72px;
    --gutter: 20px;
  }
  .hero {
    background: var(--bg) url('./assets/hero-bg-tablet.jpg') center top / cover no-repeat;
    min-height: 70vh;
  }
.hero__overlay {
    background: linear-gradient(180deg, rgba(12,1,3,0.85) 0%, rgba(12,1,3,0.5) 50%, transparent 100%);
  }
  .hero__content {
    text-align: center;
    max-width: 100%;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__logo {
    margin-left: auto;
    margin-right: auto;
  }
.grid--3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--bonus {
    grid-template-columns: repeat(2, 1fr);
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .bio__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bio__photo img {
    max-width: 360px;
    margin: 0 auto;
  }
  .bio__stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-final__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-final__photo {
    order: -1;
  }
  .cta-final__options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hide-mobile { display: none !important; }
  .mobile-br { display: block; }

  :root {
    --section-py: 56px;
  }
  .hero {
    padding-top: 48px;
    background: var(--bg);
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero__mobile-photo {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 8px auto 16px;
    border-radius: 16px;
    overflow: hidden;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(12,1,3,0.9) 0%, rgba(12,1,3,0.55) 60%, transparent 100%);
  }
  .hero__logo {
    max-width: 260px;
  }
  .grid--3x2,
  .grid--4,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--bonus {
    grid-template-columns: 1fr 1fr;
  }
  .grid--bonus .bonus-card--last {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .btn--lg {
    padding: 16px 24px;
    font-size: 13px;
    white-space: normal;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .cta-final__options {
    grid-template-columns: 1fr;
  }
  .sticky-cta__text {
    display: none;
  }
  .sticky-cta__inner {
    justify-content: center;
  }
  .pricing__anchor-numbers {
    flex-direction: column;
    gap: 4px;
  }
  .pricing__anchor-sep {
    display: none;
  }
  .dep-videos-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-galeria-scroll__track img { height: 150px; }
  .dep-whatsapp-scroll__track img { height: 180px; }
}

/* 3D tilt perspective wrapper */
.card--glass,
.card--cream {
  transform-style: preserve-3d;
}