:root {
  --dark: #1a1a1a;
  --tan: #e8dec1;
  --gold: #ffc300;
  --green: #7cb342;
  --green-dark: #1d1e20;
  --gray-check: #45484c;
  --font-head: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.5;
}

h1, h2, h3 { margin: 0 0 16px; }

h1, h3 {
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.3;
}

h2 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

h1 { font-size: clamp(24px, 4.2vw, 34px); text-align: center; text-transform: uppercase; }
h2 { font-size: clamp(28px, 4.5vw, 42px); }
h3 { font-size: clamp(17px, 2.4vw, 19px); }

p { margin: 0 0 16px; }

section {
  padding: 56px 20px;
  max-width: 960px;
  margin: 0 auto;
}

section.tan { background: var(--tan); max-width: none; }
section.tan > * { max-width: 760px; margin-left: auto; margin-right: auto; }

section.dark { background: var(--dark); color: #fff; max-width: none; position: relative; overflow: hidden; }
section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/pergament-papier-hintergrund-textur-1920.jpg") center / cover;
  opacity: .35;
  mix-blend-mode: luminosity;
}
section.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, .72);
}
section.dark h2 { color: #fff; }
section.dark > * { position: relative; z-index: 1; max-width: 900px; margin-left: auto; margin-right: auto; }

.eyebrow {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}

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

.lead { font-size: clamp(17px, 2.4vw, 20px); text-align: center; font-weight: 400; }

.btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 40px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  text-align: center;
  transition: background .2s ease;
}

.btn:hover { background: var(--green-dark); }

/* hero */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-content .lead { color: #fff; }
.hero-content .btn { margin-bottom: 32px; }
.hero-mockup { max-width: 460px; width: 100%; margin: 8px auto 24px; display: block; }

/* checklist */
ul.check {
  list-style: none;
  padding: 0;
  max-width: 560px;
  margin: 0 auto 16px;
  text-align: left;
}

ul.check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

ul.check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gray-check);
  font-weight: 700;
}

/* white info box (checklist card) */
.box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 32px 28px;
  max-width: 620px;
  margin: 0 auto 32px;
  text-align: left;
}

.box h3 { font-size: clamp(22px, 3.2vw, 28px); margin-bottom: 20px; }
.box ul.check { margin-bottom: 0; max-width: none; }
.box ul.check li { margin-bottom: 20px; }
.box ul.check li:last-child { margin-bottom: 0; }

/* banded advantage list */
ul.banded {
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: left;
}

ul.banded li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #eef0f3;
}

ul.banded li:nth-child(even) { background: #fff; }

ul.banded .mark {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

ul.banded p { margin: 0; }
ul.banded strong { display: block; margin-bottom: 4px; }

/* full-bleed alternating cards (¿Qué incluye?) */
.blocks { display: flex; flex-direction: column; }

.blocks .block-item {
  padding: 48px 20px;
  text-align: center;
}

.blocks .block-item:nth-child(odd) { background: #6b4a2b; color: #fff; }
.blocks .block-item:nth-child(even) { background: var(--tan); color: var(--dark); }

.blocks .block-item img {
  max-width: 260px;
  width: 100%;
  margin: 0 auto 20px;
  display: block;
}

.blocks .block-item p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
}

/* card grid (¿Quién puede usarlo?) */
.grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 420px;
  margin: 32px auto;
}

.card {
  background: #fff;
  color: var(--dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 16px 20px;
  text-align: left;
  background: #eef0f3;
}

.card h3 { margin-bottom: 4px; }
.card p { margin: 0; font-size: 15px; }

/* bonus cards */
.bonus-list { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 32px auto; }

.bonus {
  background: #eef0f3;
  color: var(--dark);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.bonus .bonus-body { flex: 1; }

.bonus img {
  flex: none;
  width: 40%;
  max-width: 220px;
  border-radius: 6px;
}

.bonus .tag {
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.bonus h3 { margin-bottom: 8px; }
.bonus p:not(.price) { font-size: 15px; }

.bonus .price {
  font-weight: 700;
  color: var(--green);
  font-size: 18px;
  margin: 0;
}

.bonus .price del { color: #d1362f; font-weight: 700; margin-right: 6px; }

/* price box */
.price-box {
  background: var(--dark);
  color: #fff;
  text-align: center;
  max-width: none;
  padding: 56px 20px;
}

.price-box img { max-width: 260px; width: 100%; margin: 0 auto 24px; display: block; }
.price-box h2 { color: #fff; }
.price-box h3 { text-align: center; font-size: clamp(24px, 4vw, 32px); margin-bottom: 24px; }
.price-box ul.check { text-align: left; color: #fff; }
.price-box ul.check li::before { color: var(--green); }
.price-box .btn { margin-top: 8px; margin-bottom: 16px; }

.subhead {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 26px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.guarantee-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.guarantee-head img { max-width: 160px; width: 40%; flex: none; }
.guarantee-head h2 { text-align: left; margin: 0; }

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

/* faq */
section.faq h2 { margin-bottom: 32px; }

section.faq details {
  max-width: 720px;
  margin: 0 auto 28px;
}

section.faq summary {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(19px, 2.6vw, 24px);
  cursor: default;
  list-style: none;
}

section.faq summary::-webkit-details-marker { display: none; }
section.faq summary::marker { content: ""; }

section.faq p { margin: 12px 0 0; }

@media (max-width: 600px) {
  section { padding: 40px 16px; }
  .bonus { flex-direction: column; }
  .bonus img { width: 60%; max-width: 220px; }
}
