/* ============================================
   PROCRASTINAÇÃO NÃO É O SEU DESTINO
   Meiry Elias — Sales Page
   Design System: Black + Gold | Bebas Neue + Lora
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-2: #131313;
  --black-3: #1a1a1a;
  --line: rgba(212, 160, 7, 0.18);
  --gold: #d4a007;
  --gold-2: #b87723;
  --gold-3: #efb347;
  --gold-glow: rgba(239, 179, 71, 0.35);
  --cream: #f5efe1;
  --text: #e9e3d4;
  --text-dim: #b8b2a4;

  --font-title: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Lora", Georgia, serif;

  --container: 1200px;
  --container-narrow: 880px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-3); text-decoration: none; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }
.narrow    { max-width: var(--container-narrow); }
.center    { text-align: center; }

.section { padding: 96px 0; position: relative; }
.section-dark    { background: var(--black); }
.section-darker  { background: #050505; }
.section-aguias {
  position: relative;
  background-color: #050505;
  background-image:
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.4) 45%, rgba(5,5,5,0.7) 100%),
    url("./assets/aguias.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.section-aguias > .container { position: relative; z-index: 1; }
.section-aguias .testi {
  background: linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(5,5,5,0.92) 100%);
  backdrop-filter: blur(6px);
  border-color: rgba(212,160,23,0.35);
}
.section-accent  { background: linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-offer   { background: radial-gradient(ellipse at top, rgba(212, 160, 7, 0.08), transparent 60%), #060606; }
.section-final   { background: linear-gradient(180deg, #0a0a0a, #000); padding: 110px 0; }

/* ---------- TIPOGRAFIA ---------- */
.display, .h2, .h3, h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
  color: #fff;
  line-height: 1.05;
}
.display { font-size: clamp(48px, 8vw, 92px); }
.display.sm { font-size: clamp(40px, 6vw, 64px); }
.h2 { font-size: clamp(34px, 4.5vw, 54px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); }
h4 { font-size: 20px; }

.gold { color: var(--gold-3); }

/* Degradê metálico dourado — aplicado nos destaques dentro de títulos */
.h2 .gold,
h2 .gold,
.display .gold,
.display.sm .gold,
h1 .gold {
  background: linear-gradient(180deg,
    #FFF6D6 0%,
    #F5D87A 22%,
    #E5B838 45%,
    #D4A017 65%,
    #A8780F 90%,
    #6e4d08 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.eyebrow, .kicker {
  font-family: var(--font-title);
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text);
  line-height: 1.7;
  max-width: 620px;
}
.center .lead { margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 56px; }

/* ---------- HEADER ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.brand {
  font-family: var(--font-title);
  letter-spacing: 0.42em;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}
.brand.sm { font-size: 14px; letter-spacing: 0.32em; }

.topnav {
  display: flex; gap: 36px;
  margin-left: auto; margin-right: auto;
}
.topnav a {
  font-family: var(--font-title);
  letter-spacing: 0.22em;
  font-size: 13px;
  color: #d8d2c4;
  text-transform: uppercase;
  transition: color .2s ease;
  position: relative;
}
.topnav a:hover { color: var(--gold-3); }
.topnav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold-3);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.topnav a:hover::after { transform: scaleX(1); }

.btn-nav {
  font-size: 11px !important;
  line-height: 1.25;
  text-align: center;
  padding: 12px 22px !important;
  letter-spacing: 0.18em;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 100%);
  color: #1a1100;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 14px 32px -12px var(--gold-glow);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 18px 38px -10px var(--gold-glow); }
.btn-sm  { padding: 10px 18px; font-size: 13px; }
.btn-lg  { padding: 20px 36px; font-size: 18px; }
.btn-xl  { padding: 24px 44px; font-size: 19px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 50px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #050505;
  background-image: url("./assets/hero-bg.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 30%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.45) 100%),
    radial-gradient(ellipse at 0% 50%, rgba(0,0,0,0.55), transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(212,160,23,0.08), transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 30px; align-items: center;
  width: 100%;
  padding-bottom: 40px;
}
.hero-copy h1 { letter-spacing: 0.01em; }

/* Big gold gradient title */
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(56px, 7.5vw, 92px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  padding-top: 0.18em;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
}
.hero-title-main {
  display: block;
  background: linear-gradient(180deg,
    #FFF6D6 0%,
    #F5D87A 22%,
    #E5B838 45%,
    #D4A017 65%,
    #A8780F 90%,
    #6e4d08 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 30px rgba(212,160,23,0.3);
}
.hero-title-sub {
  display: block;
  font-size: 0.7em;
  line-height: 1;
  margin-top: 6px;
  color: #F2E9D8;
  -webkit-text-fill-color: #F2E9D8;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}
.hero-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  color: #e9e3d4;
  margin: 0 0 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-bullets {
  list-style: none; padding: 0;
  margin: 0 0 34px;
}
.hero-bullets li {
  padding: 7px 0 7px 36px;
  position: relative;
  color: #efe9d8;
  font-size: 17px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.65);
}
.hero-bullets li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gold-3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,7,0.15), transparent 70%);
}
.hero-bullets li::after {
  content: "✓";
  position: absolute; left: 6px; top: 8px;
  color: var(--gold-3);
  font-size: 14px;
  font-weight: bold;
}

.hero-cta {
  background: linear-gradient(180deg, #f8d878 0%, #e8b540 35%, #d4a007 70%, #b87723 100%);
  border: 1px solid #f0c860;
  box-shadow:
    0 18px 40px -12px rgba(212,160,7,0.5),
    inset 0 1px 0 rgba(255,255,255,0.35);
  padding: 22px 40px !important;
  font-size: 18px !important;
}
.hero-guarantee {
  margin-top: 16px;
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--gold-3);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse at center, rgba(212,160,23,0.18) 0%, rgba(212,160,23,0.08) 35%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-art img {
  position: relative;
  z-index: 1;
  filter:
    brightness(0.95)
    contrast(1.08)
    drop-shadow(0 40px 60px rgba(0,0,0,0.95))
    drop-shadow(0 0 80px rgba(212,160,23,0.3));
  max-width: 560px;
  width: 100%;
  margin: 0;
  transform: rotate(-1deg);
}

/* TRUST STRIP */
.hero-trust-band {
  position: relative; z-index: 2;
  width: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.95) 100%);
  border-top: 1px solid rgba(212,160,7,0.25);
  backdrop-filter: blur(6px);
}
.hero-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 26px 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  color: #e9e3d4;
}
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1.5px solid var(--gold-3);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-3);
  font-size: 18px;
  background: radial-gradient(circle, rgba(212,160,7,0.18), transparent 70%);
}
.trust-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.trust-item p strong {
  font-family: var(--font-title);
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.bullets { list-style: none; padding: 0; margin: 26px 0 32px; }
.bullets li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: var(--text);
}
.bullets li::before {
  content: "◆";
  color: var(--gold-3);
  position: absolute; left: 0; top: 8px;
  font-size: 14px;
}

.meta {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold-3);
  margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* ---------- DORES ---------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 50px;
}
.card-pain {
  background: linear-gradient(180deg, #131313 0%, #0c0c0c 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.card-pain .num {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}
.card-pain p { margin: 0; color: var(--text); font-size: 16px; line-height: 1.55; }
.closing { text-align: center; margin-top: 50px; font-size: 19px; color: var(--gold-3); font-style: italic; }

/* ---------- PILLARS ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 20px;
}
.pillar {
  text-align: center;
  padding: 44px 30px;
  background: linear-gradient(180deg, rgba(212, 160, 7, 0.04), rgba(0,0,0,0));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.pillar-icon {
  width: 70px; height: 70px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 28px;
  background: radial-gradient(circle, rgba(212,160,7,0.12), transparent 70%);
}
.pillar h3 { color: var(--gold-3); }

/* ---------- MOCKUPS ---------- */
.mockups {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; align-items: center;
  margin-top: 40px;
}
.mockups img {
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.7));
  max-height: 420px; margin: 0 auto;
}
.mockups-single {
  display: block;
  text-align: center;
  margin-top: 50px;
}
.mockups-single img {
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.7)) drop-shadow(0 0 50px rgba(212,160,23,0.15));
  max-width: 680px; width: 100%; max-height: none;
  margin: 0 auto;
}

/* ---------- MODULES ---------- */
.modules {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 30px;
}
.module {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 28px 28px 32px;
}
.mod-num {
  font-family: var(--font-title);
  font-size: 36px;
  color: var(--gold);
  display: block; line-height: 1;
  margin-bottom: 8px;
}
.module h4 { color: #fff; margin: 0 0 8px; font-family: var(--font-title); letter-spacing: 0.04em; font-size: 22px; }
.module p { margin: 0; color: var(--text-dim); font-size: 15px; }

/* ---------- DUAS COLUNAS ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 40px;
}
.col-title {
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  color: var(--gold-3);
  font-size: 18px;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.col-title.col-x { color: #8a847a; }
.check, .cross { list-style: none; padding: 0; margin: 0; }
.check li, .cross li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.check li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--gold-3); font-weight: bold; font-family: var(--font-body);
}
.cross li::before {
  content: "✕";
  position: absolute; left: 0; top: 10px;
  color: #6b6557; font-weight: bold; font-family: var(--font-body);
}

/* ---------- AUTORA ---------- */
.author-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: center;
}
.author-card {
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
}
.author-photo {
  width: 180px; height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a, #050505);
  border: 2px solid var(--gold-2);
  display: grid; place-items: center;
  box-shadow: 0 0 50px rgba(212,160,7,0.15);
}
.author-photo-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  background: #0a0a0a;
  border: 3px solid var(--gold-2);
  box-shadow:
    0 0 0 6px rgba(212,160,23,0.08),
    0 25px 50px -10px rgba(0,0,0,0.75),
    0 0 70px rgba(212,160,23,0.25);
  position: relative;
  isolation: isolate;
  display: block !important;
}
.author-photo-img img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  display: block;
}

/* Foto vertical com bordas arredondadas */
.author-photo-vertical {
  width: 320px !important;
  height: 440px !important;
  margin: 0 auto 28px;
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  background: #0a0a0a;
  border: 2px solid var(--gold-2);
  box-shadow:
    0 0 0 6px rgba(212,160,23,0.08),
    0 30px 60px -10px rgba(0,0,0,0.8),
    0 0 80px rgba(212,160,23,0.22);
  display: block !important;
}
.author-photo-vertical img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
}
.monogram {
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--gold-3);
  letter-spacing: 0.05em;
}
.author-tagline {
  font-style: italic;
  color: var(--gold-3);
  font-size: 18px;
  margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 20px;
}
.testi {
  background: linear-gradient(180deg, #131313 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin: 0;
  position: relative;
}
.testi .stars {
  color: var(--gold-3);
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 14px;
}
.testi blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  quotes: "\201C" "\201D";
}
.testi blockquote::before { content: open-quote; color: var(--gold-3); font-size: 28px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testi figcaption {
  font-family: var(--font-title);
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--gold-3);
  text-transform: uppercase;
}

/* ---------- BENEFITS ---------- */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px; margin-top: 40px;
}
.benefit {
  text-align: center;
  padding: 36px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
  transition: transform .25s ease, border-color .25s ease;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.benefit-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 24px;
  background: radial-gradient(circle, rgba(212,160,7,0.12), transparent 70%);
}
.benefit h3 { color: var(--gold-3); font-size: 22px; margin: 0 0 10px; }
.benefit p { margin: 0; font-size: 15px; color: var(--text-dim); line-height: 1.55; }

/* ---------- SECTION CTA ---------- */
.section-cta {
  text-align: center;
  margin-top: 56px;
}
.section-cta .btn { margin: 0 auto; }
.section-cta .micro {
  display: block;
  margin-top: 14px;
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--gold-3);
}

/* ---------- URGENCY ---------- */
.urgency { color: var(--gold-3); font-size: 14px; letter-spacing: 0.06em; margin-top: 8px; }

/* ---------- FOOTER HELP ---------- */
.footer-help { color: var(--text-dim); font-size: 14px; margin: 18px 0 12px; }
.footer-help a { color: var(--gold-3); }

/* ---------- BONUS ---------- */
.bonus {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 30px;
}
.bonus-card {
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.bonus-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.26em;
  color: #0a0a0a;
  background: var(--gold-3);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.bonus-card h4 { color: #fff; font-size: 22px; }
.bonus-card p { color: var(--text-dim); margin: 0 0 12px; font-size: 15px; }
.bonus-value { color: var(--gold-3) !important; font-weight: 600; font-family: var(--font-body); }

/* ---------- OFERTA ---------- */
.price-card {
  background: linear-gradient(180deg, #111 0%, #070707 100%);
  border: 1px solid var(--gold-2);
  border-radius: 10px;
  padding: 50px 40px;
  margin: 40px auto 0;
  max-width: 620px;
  box-shadow: 0 30px 80px -20px rgba(212,160,7,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}
.price-from { color: var(--text-dim); font-size: 17px; margin: 0 0 4px; }
.strike { text-decoration: line-through; }
.price-now {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0.06em;
  margin: 0 0 6px;
}
.price-now .big {
  display: block;
  color: var(--gold-3);
  font-size: clamp(64px, 9vw, 96px);
  line-height: 1;
  margin: 8px 0;
  letter-spacing: 0.02em;
}
.price-now .big small { font-size: 0.4em; }
.price-installments { color: var(--text-dim); margin: 0 0 26px; }
.price-includes {
  list-style: none; padding: 0;
  margin: 0 auto 30px;
  text-align: left;
  max-width: 420px;
}
.price-includes li {
  padding: 8px 0;
  color: var(--text);
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.secure { color: var(--text-dim); font-size: 14px; margin-top: 18px; }

/* ---------- GARANTIA ---------- */
.guarantee {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 50px; align-items: center;
}
.seal {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-3), var(--gold) 60%, var(--gold-2));
  display: grid; place-items: center;
  box-shadow: 0 20px 50px -10px rgba(212,160,7,0.4);
  position: relative;
}
.seal.seal-img {
  width: 260px; height: 260px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.seal.seal-img::before { display: none; }
.seal.seal-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 20px 35px rgba(0,0,0,0.6))
    drop-shadow(0 0 40px rgba(212,160,23,0.35));
}
.seal::before {
  content: "";
  position: absolute; inset: 8px;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.35);
}
.seal-inner {
  text-align: center;
  font-family: var(--font-title);
  color: #1a1100;
  letter-spacing: 0.18em;
}
.seal-top, .seal-bottom { display: block; font-size: 16px; }
.seal-big { display: block; font-size: 80px; line-height: 1; margin: 4px 0; letter-spacing: 0.02em; }
.guarantee-copy p { color: var(--text); font-size: 18px; }
.signature {
  margin-top: 18px;
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  color: var(--gold-3);
}

/* ---------- FAQ ---------- */
.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq summary {
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  list-style: none;
  position: relative;
  padding-right: 30px;
  outline: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  color: var(--gold-3); font-size: 28px;
  transition: transform .2s ease;
}
.faq[open] summary::after { content: "−"; }
.faq p {
  margin: 14px 0 0;
  color: var(--text-dim);
  font-size: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #040404;
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
}
.footer-inner { text-align: center; }
.footer-meta { color: var(--text-dim); font-size: 14px; margin: 12px 0 8px; }
.footer-disclaimer {
  color: #6b6557; font-size: 12px; line-height: 1.6;
  max-width: 600px; margin: 0 auto;
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1100px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .bonus { grid-template-columns: repeat(2, 1fr); }
  .topnav { gap: 22px; }
  .topnav a { font-size: 12px; letter-spacing: 0.18em; }
}
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .cards { grid-template-columns: 1fr !important; }
  .hero {
    padding: 70px 0 60px;
    min-height: auto;
    background-position: 70% center;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.92) 100%);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-bullets { display: inline-block; text-align: left; }
  .hero-art img { max-width: 280px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-item { justify-content: flex-start; }
  .topnav { display: none; }
  .btn-nav { font-size: 10px !important; padding: 9px 14px !important; }

  .cards, .pillars, .bonus, .mockups, .testimonials, .benefits { grid-template-columns: 1fr; }
  .modules, .two-col, .author-grid, .guarantee { grid-template-columns: 1fr; }
  .guarantee { text-align: center; }
  .seal { margin: 0 auto; width: 180px; height: 180px; }
  .seal.seal-img { width: 220px; height: 220px; }
  .seal-big { font-size: 64px; }
  .author-photo-vertical { width: 260px !important; height: 360px !important; }

  .price-card { padding: 36px 22px; }
  .btn-xl { padding: 20px 30px; font-size: 17px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .display { font-size: clamp(40px, 12vw, 60px); }
  .h2 { font-size: clamp(28px, 7vw, 40px); }
  .topbar-inner { padding: 12px 18px; }
  .brand { font-size: 14px; letter-spacing: 0.3em; }
  .btn-sm { padding: 8px 14px; font-size: 12px; }
}
