﻿:root {
  --bg-dark: #1c1609;
  --bg-darker: #0d0b06;
  --bg-light: #f5edd6;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --text-light: #f5edd6;
  --text-muted: #c8b98a;
  --text-dark: #2c1a00;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text-dark);
  background: #ffffff;
}

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

.page {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.section {
  padding: 70px 0;
}

/* Section skins */
.section--light {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section--darker {
  background: var(--bg-darker);
  color: var(--text-light);
}

.section--image {
  background: linear-gradient(rgba(245, 237, 214, 0.92), rgba(245, 237, 214, 0.92)),
    url("https://cdn.shopify.com/s/files/1/0731/1746/6801/files/Miel_aceitunas_higos.jpg?v=1771799528")
      center/cover no-repeat;
}

.section--cta {
  background: linear-gradient(rgba(13, 11, 6, 0.82), rgba(28, 22, 9, 0.88)),
    url("https://cdn.shopify.com/s/files/1/0731/1746/6801/files/Mesa_con_pan_uvas_y_pergamino.jpg?v=1771799551")
      center/cover no-repeat;
  color: var(--text-light);
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.25;
}

h1 {
  font-size: clamp(30px, 5vw, 54px);
  color: var(--text-light);
}

h2 {
  font-size: clamp(24px, 4vw, 38px);
}

.lead {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.7;
  margin: 0 0 28px;
}

.lead--muted {
  color: var(--text-muted);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow--dark {
  color: #8b5e00;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1609;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
  letter-spacing: 1px;
}

.btn--block {
  display: block;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(rgba(10, 8, 3, 0.8), rgba(20, 14, 5, 0.85)),
    url("https://cdn.shopify.com/s/files/1/0731/1746/6801/files/Hombre_cocinando_en_piedra.jpg?v=1771799508")
      center top/cover no-repeat;
  color: var(--text-light);
  padding: 70px 0 60px;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero__copy {
  flex: 1 1 320px;
}

.hero__mockup {
  flex: 0 0 auto;
}

.hero__mockup img {
  width: clamp(140px, 30vw, 240px);
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 30px rgba(201, 168, 76, 0.25));
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  color: #9a8b6a;
  font-size: 13px;
}

/* Pain points */
.pain-list {
  text-align: left;
  margin: 32px 0 34px;
}

.pain-item {
  background: #ffffff;
  border-left: 3px solid var(--gold);
  padding: 15px 20px;
  margin-bottom: 14px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quote {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  font-style: italic;
}

/* Product / features */
.mockup {
  display: flex;
  justify-content: center;
  margin: 35px 0 50px;
}

.mockup img {
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.75));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  text-align: left;
}

.feature-card {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  padding: 24px 20px;
  color: var(--text-muted);
}

.feature-card h3 {
  color: var(--gold);
  font-size: 16px;
  margin: 0 0 8px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Who it's for */
.who-list {
  text-align: left;
  margin-top: 30px;
}

.who-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.who-icon {
  font-size: 22px;
  flex-shrink: 0;
}

/* Bonuses */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 35px;
}

.bonus-card {
  display: flex;
  text-align: left;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  padding: 30px 28px;
}

.bonus-card img {
  width: clamp(110px, 25vw, 120px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.bonus-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pill {
  background: var(--gold);
  color: #1c1609;
  font-size: 10px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.strike {
  text-decoration: line-through;
  color: #9a8b6a;
  font-size: 13px;
}

.free {
  color: #4caf50;
  font-weight: 700;
  font-size: 13px;
}

/* Offer / pricing */
.value-list {
  background: #ffffff;
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #ede0c8;
}

.value-row:last-child {
  border-bottom: none;
}

.price-box {
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 12px;
  padding: 40px 30px;
  border: 2px solid var(--gold);
  text-align: center;
}

.price-total {
  color: #9a8b6a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 6px;
}

.price-label {
  color: var(--text-muted);
  margin: 0 0 10px;
}

.price {
  font-size: clamp(44px, 12vw, 72px);
  font-weight: 900;
  color: var(--gold);
  margin: 0 0 8px;
  line-height: 1;
}

.price-note {
  color: #9a8b6a;
  margin: 0 0 28px;
}

.secure {
  color: #9a8b6a;
  font-size: 13px;
  margin: 18px 0 0;
}

/* Guarantee */
.icon {
  font-size: 60px;
  margin-bottom: 18px;
}

.muted {
  color: #9a8b6a;
  font-style: italic;
}

/* Final CTA */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.cta-badges,
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9a8b6a;
  margin-top: 16px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero__mockup {
    display: none;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bonus-card {
    flex-direction: column;
    text-align: justify;
  }
}

.cta-center {
  text-align: center;
  margin-top: 24px;
}

.heading-center .eyebrow,
.heading-center .eyebrow--dark,
.heading-center h2,
.heading-center .lead {
  text-align: center;
}.heading-center {
  text-align: center;
}

/* Keep content blocks left-aligned inside heading-centered sections */
.heading-center .pain-list,
.heading-center .who-list,
.heading-center .feature-grid,
.heading-center .bonus-list,
.heading-center .value-list,
.
