:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-2: #1c1c1c;
  --cream: #f5f0e8;
  --gold: #c9a15f;
  --gold-light: #e0b565;
  --muted: #8a8a8a;
  --muted-2: #6a6a6a;
  --border: #2a2a2a;
  --red: #c9423a;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

@media (max-width: 700px) {
  section { padding: 56px 0; }
}

/* ---------- Typography ---------- */

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.eyebrow-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  background: rgba(201, 161, 95, 0.12);
  border: 1px solid rgba(201, 161, 95, 0.4);
  padding: 8px 16px;
  border-radius: 20px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0;
  line-height: 1.12;
}

h1 { font-weight: 600; font-size: clamp(34px, 5.5vw, 54px); }
h2 { font-weight: 700; font-size: clamp(28px, 4vw, 40px); }
h3 { font-weight: 600; font-size: 21px; }

.section-title { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-title .eyebrow { display: block; margin-bottom: 14px; }
.section-title p { color: var(--muted); font-size: 17px; margin-top: 16px; }

.lede { color: #c8c8c8; font-size: 18px; line-height: 1.65; }

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  padding: 18px 32px;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(201, 161, 95, 0.32);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-transform: uppercase;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201, 161, 95, 0.42); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 32px; font-size: 16px; }

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  box-shadow: none;
}

.micro-trust {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.offer-card .micro-trust { justify-content: center; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.header-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  color: var(--black);
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(60% 60% at 80% 0%, rgba(201, 161, 95, 0.10), transparent 60%),
    var(--black);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { order: -1; max-width: 280px; margin: 0 auto; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-copy .price-row { justify-content: center; }
  .hero-copy .stats-row { justify-content: center; text-align: center; }
  .hero-copy .stat { text-align: center; }
  .hero-copy .micro-trust { justify-content: center; }
}

.hero-photo img {
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-copy .eyebrow-badge { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lede { margin-bottom: 28px; max-width: 480px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.price-old {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--muted-2);
  text-decoration: line-through;
}

.price-new {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--cream);
}

.price-tag {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--black);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.stats-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat { text-align: left; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--cream); }
.stat-label { font-family: var(--font-body); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }


/* ---------- Dor / diagnóstico ---------- */

.pain {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 700px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-item {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pain-item .icon { color: var(--red); font-size: 18px; line-height: 1; margin-top: 2px; }
.pain-item p { margin: 0; color: #d8d8d8; font-size: 15.5px; }

/* ---------- Para quem é ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  text-align: center;
}

.audience-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 14px;
}

.audience-card h3 { margin-bottom: 10px; font-size: 19px; }
.audience-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Sobre o autor ---------- */

.about {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .about-copy { text-align: center; }
  .about-copy blockquote { text-align: left; }
}

.about-photo img {
  border-radius: 10px;
  border: 1px solid var(--border);
}

.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: #c8c8c8; font-size: 16px; margin-bottom: 16px; }
.about-copy blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(201,161,95,0.06);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

/* ---------- Módulos / capítulos ---------- */

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

@media (max-width: 860px) { .chapters-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .chapters-grid { grid-template-columns: 1fr; } }

.chapter-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
}

.chapter-card .chapter-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
}

.chapter-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.chapter-card p { color: var(--muted); font-size: 13.5px; margin: 0; }

@media (max-width: 860px) {
  .laptop-screen { width: 320px; }
  .laptop-base { width: 368px; }
}

/* ---------- Ebook mockup (3D) ---------- */

.book-mockup {
  perspective: 1400px;
  display: flex;
  justify-content: center;
}

.book-mockup .book {
  position: relative;
  width: 260px;
  transform: rotateY(-22deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.book-mockup .book:hover { transform: rotateY(-14deg) rotateX(1deg); }

.book-mockup .book img {
  width: 100%;
  height: auto;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 24px 30px 50px rgba(0,0,0,0.55);
  display: block;
}

.book-mockup .book::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: -9px;
  width: 9px;
  background: repeating-linear-gradient(
    90deg,
    #e9e4da 0px, #e9e4da 1px,
    #cfc9bd 1px, #cfc9bd 2px
  );
  transform: rotateY(90deg) translateZ(4.5px);
  border-radius: 0 2px 2px 0;
}

.book-mockup.small .book { width: 160px; }

/* ---------- Demonstrativo (páginas internas) ---------- */

.demo-gallery {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  padding: 0 20px;
}

.demo-gallery .demo-page {
  width: 190px;
  margin: 0 -22px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  transition: transform 0.25s ease;
  background: #fff;
}

.demo-gallery .demo-page:nth-child(1) { transform: rotate(-7deg) translateY(10px); z-index: 1; }
.demo-gallery .demo-page:nth-child(2) { transform: rotate(0deg) translateY(-6px); z-index: 3; }
.demo-gallery .demo-page:nth-child(3) { transform: rotate(7deg) translateY(10px); z-index: 2; }

.demo-gallery .demo-page:hover { transform: translateY(-10px) scale(1.03); z-index: 5; }

@media (max-width: 600px) {
  .demo-gallery { padding: 0; }
  .demo-gallery .demo-page { width: 30vw; margin: 0 -14px; }
}

/* ---------- Ícones ---------- */

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 161, 95, 0.12);
  border: 1px solid rgba(201, 161, 95, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.icon-badge svg { width: 22px; height: 22px; }

/* ---------- Benefícios ---------- */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}

@media (max-width: 700px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.benefit-item h3 { font-size: 17px; margin-bottom: 6px; }
.benefit-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Urgência banner ---------- */

.urgency-banner {
  background: linear-gradient(180deg, #171208, #0a0a0a);
  border-top: 1px solid rgba(201,161,95,0.3);
  border-bottom: 1px solid rgba(201,161,95,0.3);
  text-align: center;
  padding: 48px 0;
}

.urgency-banner h2 { font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 22px; }

/* ---------- Ideal pra você (v2 com ícone) ---------- */

.audience-card .icon-badge { margin: 0 auto 16px; }

/* ---------- Como funciona o acesso ---------- */

.access-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  counter-reset: step;
}

@media (max-width: 700px) { .access-steps { grid-template-columns: 1fr; } }

.access-step { text-align: center; position: relative; }

.access-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 auto 16px;
}

.access-step h3 { font-size: 16.5px; margin-bottom: 8px; }
.access-step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Receive list (bloco 06) ---------- */

.receive-mockup { max-width: 640px; margin: 44px auto 0; }
.receive-mockup img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.receive-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}

@media (max-width: 700px) {
  .receive-list { grid-template-columns: 1fr; }
}

.receive-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #d8d8d8;
}
.receive-list li strong { color: var(--cream); }
.receive-list .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Banner quebra ---------- */

.banner-break {
  position: relative;
  height: 600px;
  overflow: hidden;
}

@media (max-width: 700px) {
  .banner-break { height: 320px; }
}

.banner-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55);
}

.banner-break .banner-quote {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.banner-break .banner-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  color: var(--cream);
  max-width: 640px;
  margin: 0;
}

/* ---------- Antes / Depois ---------- */

.compare {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }

.compare-card {
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid var(--border);
}

.compare-card.before { background: rgba(201,66,58,0.06); border-color: rgba(201,66,58,0.3); }
.compare-card.after { background: rgba(201,161,95,0.08); border-color: rgba(201,161,95,0.4); }

.compare-card h3 { margin-bottom: 18px; }
.compare-card.before h3 { color: #e2938c; }
.compare-card.after h3 { color: var(--gold-light); }

.compare-card ul { list-style: none; margin: 0; padding: 0; }
.compare-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #d8d8d8;
  padding: 8px 0;
}

/* ---------- Depoimentos ---------- */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.testimonial-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar-photo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.testimonial-head strong { display: block; color: var(--cream); font-size: 14px; font-weight: 700; }
.testimonial-head span { color: var(--muted); font-size: 12.5px; }
.testimonial-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: #d8d8d8; font-size: 15.5px; margin: 0; font-style: italic; }

/* ---------- Bônus ---------- */

.bonus { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

@media (max-width: 860px) { .bonus-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; } }

.bonus-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 26px;
}

.bonus-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 6px 0;
}

.bonus-thumb {
  padding: 18px 18px 0;
}

.bonus-thumb img {
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

.bonus-card h3 { font-size: 17px; margin: 18px 20px 10px; }
.bonus-card p { color: var(--muted); font-size: 14px; margin: 0 20px; }

/* ---------- Oferta ---------- */

.offer {
  background:
    radial-gradient(50% 50% at 50% 0%, rgba(201, 161, 95, 0.10), transparent 60%),
    var(--black);
  border-top: 1px solid var(--border);
}

.offer-card {
  max-width: 560px;
  margin: 44px auto 0;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}

.offer-mockup {
  margin: -44px -36px 28px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.offer-mockup img { width: 100%; display: block; }

.offer-card h3 { font-size: 24px; margin-bottom: 6px; }
.offer-card .offer-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
}

.offer-price-old { font-size: 20px; color: var(--muted-2); text-decoration: line-through; font-family: var(--font-body); }
.offer-price-new { font-family: var(--font-display); font-weight: 700; font-size: 48px; color: var(--cream); }
.offer-price-cash { color: var(--muted); font-size: 13px; margin-bottom: 30px; }

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.offer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: #d8d8d8;
}

.offer-list li:last-child { border-bottom: none; }
.offer-list .check { color: var(--gold); font-weight: 700; }

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- Garantia ---------- */

.guarantee-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-box {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.guarantee-seal {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  text-align: center;
  line-height: 1.1;
}

@media (max-width: 560px) { .guarantee-box { flex-direction: column; text-align: center; } }

.guarantee-box h3 { margin-bottom: 8px; }
.guarantee-box p { color: #c8c8c8; margin: 0; font-size: 15px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 720px; margin: 44px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16.5px;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .plus {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p { color: var(--muted); font-size: 15px; padding-bottom: 22px; margin: 0; line-height: 1.6; }

.faq-item.open .faq-answer { max-height: 300px; }

/* ---------- CTA final ---------- */

.final-cta {
  text-align: center;
  background: var(--black);
}

.final-cta h2 { max-width: 560px; margin: 0 auto 18px; }
.final-cta .lede { max-width: 480px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 40px 0 100px;
  text-align: center;
}

.site-footer .logo { display: inline-block; margin-bottom: 14px; }
.site-footer p { color: var(--muted-2); font-size: 13px; max-width: 560px; margin: 6px auto; }
.site-footer .socials { margin: 18px 0; display: flex; justify-content: center; gap: 18px; }
.site-footer .socials a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 600; }
.site-footer .socials a:hover { color: var(--gold); }

@media (max-width: 700px) {
  .site-footer { padding-bottom: 120px; }
}

/* ---------- Sticky mobile CTA ---------- */

.sticky-buy {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--gold);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
}

.sticky-buy small {
  color: var(--black);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
}

.sticky-buy .btn {
  background: var(--black);
  color: var(--cream);
  padding: 12px 18px;
  font-size: 13px;
  box-shadow: none;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .sticky-buy.visible { display: flex; }
}
