/* ============================================================
   CÓDIGO DIVINO — Landing page (es)
   Mobile-first — 320px -> desktop
   ============================================================ */
:root {
  --meteorite-dark: #2f1c6a;
  --meteorite-dark-2: #1F1346;
  --meteorite: #8c85ff;
  --primary-dark: #5025d1;
  --primary: #673de6;
  --primary-light: #ebe4ff;
  --danger: #fc5185;
  --success: #00b090;
  --gold: #ffcd35;
  --dark: #1d1e20;
  --text: #36344d;
  --light: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 19, 70, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
s { color: var(--danger); text-decoration-thickness: 2px; }
strong { font-weight: 700; }

/* ============ BOTONES (compra — sempre verde) ============ */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
  color: var(--light);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(22, 163, 74, .35), inset 0 -3px 0 rgba(0, 0, 0, .25);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 163, 74, .45);
  filter: brightness(1.06);
}
.btn:active { transform: translateY(0); }
.btn--cta { width: 100%; max-width: 420px; }
.btn--big { font-size: 1rem; padding: 1.1rem 1.6rem; }
.cta-center { text-align: center; margin-top: 1.8rem; }

/* ============ CONTENEDOR ============ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============ SECCIONES ============ */
.section { padding: 3.2rem 0; }
.section--light { background: var(--light); }
.section--dark {
  background: linear-gradient(180deg, var(--meteorite-dark) 0%, var(--meteorite-dark-2) 100%);
  color: var(--light);
}
.section--dark .section__title { color: var(--light); }
.section--dark .section__text { color: rgba(255, 255, 255, .92); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--meteorite-dark);
  text-align: center;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .9rem;
}
.section__text { font-size: .95rem; color: var(--text); margin-bottom: .8rem; text-align: center; }

.section__stat {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--meteorite-dark);
  background: var(--primary-light);
  padding: .8rem 1rem;
  border-radius: 12px;
  margin: 1.2rem auto;
  max-width: 480px;
}
.section__stat strong { color: var(--primary-dark); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; text-align: center; color: var(--light); }
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-background.webp');
  background-size: cover;
  background-position: center top;
  background-color: var(--meteorite-dark-2);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 19, 70, .20) 0%, rgba(31, 19, 70, .20) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 6vw, 3rem);
  letter-spacing: .06em;
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, .45);
}
.hero__headline {
  font-weight: 900;
  font-size: clamp(.95rem, 4vw, 1.55rem);
  line-height: 1.35;
  text-transform: uppercase;
  margin: .6rem auto .5rem;
  max-width: 24em;
}
.hero__sub {
  font-size: .88rem;
  max-width: 32em;
  margin: 0 auto 1rem;
  color: rgba(255, 255, 255, .93);
}
.hero__mockup {
  width: 100%;
  max-width: min(75%, 360px);
  aspect-ratio: 768 / 683;
  object-fit: contain;
  margin: 0 auto .9rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero .btn { margin-top: .2rem; }
/* ============ CHECKLIST ============ */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .4rem;
  font-size: .95rem;
}
.checklist .check { width: 24px; height: auto; flex-shrink: 0; }
.section--dark .checklist li { color: var(--light); }

/* ============ CARDS (incluye / personas) ============ */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(103, 61, 230, .18);
}
.card img { width: 100%; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--meteorite-dark); margin: .8rem 0 .4rem; }
.card p { font-size: .9rem; color: var(--text); }
.section--dark .card { background: var(--meteorite-dark); color: var(--light); }
.section--dark .card h3 { color: var(--light); }
.section--dark .card p { color: rgba(255, 255, 255, .92); }
.card--person img { aspect-ratio: 3 / 2; }

/* ============ BONOS ============ */
.section--bonos { background: linear-gradient(180deg, var(--primary-dark) 0%, var(--meteorite-dark-2) 100%); color: var(--light); }
.section--bonos .section__title { color: var(--gold); }
.section--bonos .section__text { color: rgba(255, 255, 255, .95); }

.bono {
  background: linear-gradient(135deg, #2a1850 0%, #251247 100%);
  border: 1px solid rgba(140, 133, 255, .35);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow);
}
.bono img { width: 100%; }
.bono__body { padding: .9rem 1rem; }
.bono__tag {
  display: inline-block;
  background: var(--gold);
  color: #3a2a05;
  font-weight: 800;
  font-size: .75rem;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 6px;
  margin-bottom: .4rem;
}
.bono__body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--light); margin: .4rem 0; }
.bono__body p { font-size: .88rem; color: rgba(255, 255, 255, .92); }
.bono__precio { font-size: 1.05rem; font-weight: 700; color: var(--success); }
.bono__precio s { color: var(--danger); }

.bono__valorado {
  background: linear-gradient(135deg, #7b4dff 0%, var(--primary) 100%);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem;
  text-align: center;
  color: var(--light);
  box-shadow: 0 0 0 3px rgba(255, 205, 53, .55);
}
.bono__valorado p { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.bono__valorado s { color: rgba(255, 255, 255, .65); }
.bono__gratis { font-size: 1.15rem; font-weight: 800; }
.bono__gratis strong { color: var(--gold); }

/* ============ OFERTA ============ */
.section--oferta { background: linear-gradient(180deg, #f7f2ff 0%, #efe7ff 100%); }
.oferta__box {
  background: linear-gradient(160deg, var(--meteorite-dark-2) 0%, #2c1a58 55%, #3a2270 100%);
  color: var(--light);
  border-radius: 18px;
  padding: 1.6rem 1.25rem;
  box-shadow: 0 16px 40px rgba(31, 19, 70, .28);
}
.oferta__mockup { width: 100%; border-radius: 12px; margin-bottom: 1rem; box-shadow: 0 10px 30px rgba(0, 0, 0, .35); }
.oferta__precio { font-size: 1.45rem; font-weight: 800; color: var(--gold); text-align: center; line-height: 1.3; }
.oferta__precio strong { color: var(--gold); }
.oferta__moneda { font-size: .82rem; color: rgba(255, 255, 255, .85); text-align: center; margin-bottom: .6rem; }
.oferta__box h3 { font-size: 1.05rem; font-weight: 700; color: var(--light); margin: .9rem 0 .4rem; }
.checklist--oferta li { color: rgba(255, 255, 255, .95); font-size: .95rem; }
.oferta__limitada { text-align: center; font-weight: 700; color: var(--danger); font-size: 1.05rem; margin: .6rem 0 .4rem; }
.oferta__entrega { text-align: center; font-size: .88rem; color: rgba(255, 255, 255, .88); }
.oferta__precio-bajo { text-align: center; color: rgba(255, 255, 255, .8); font-size: .85rem; text-transform: uppercase; letter-spacing: .03em; margin-top: .4rem; }

/* ============ GARANTIA ============ */
.garantia__img { width: 140px; margin: 0 auto 1rem; }
.section--garantia {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 248, 240, .95) 100%), url('assets/fondo-pergamino.jpg');
  background-size: cover;
  background-position: center;
}

/* ============ FAQ ============ */
.section--faq { background: #f4f1fb; }
.faq {
  background: var(--light);
  border: 1px solid rgba(103, 61, 230, .2);
  border-radius: 12px;
  margin-bottom: .8rem;
  padding: .9rem 1rem;
}
.faq summary { font-weight: 700; color: var(--text); cursor: pointer; font-size: .95rem; }
.faq p { font-size: .88rem; color: var(--text); margin-top: .5rem; }

/* ============ FOOTER ============ */
.footer { background: var(--meteorite-dark-2); color: rgba(255, 255, 255, .85); text-align: center; padding: 1.6rem 1rem; font-size: .85rem; }

/* ============ RESPONSIVE (>=360px: telas grandes de celular) ============ */
@media (min-width: 360px) {
  .hero__mockup { max-width: min(70%, 340px); }
  .hero__headline { font-size: clamp(.95rem, 4.2vw, 1.1rem); }
}

/* ============ RESPONSIVE (>=768px) ============ */
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
  .section { padding: 4.2rem 0; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards--people { grid-template-columns: repeat(4, 1fr); }
  .hero__content { padding: 2.8rem 2rem 3rem; }
  .hero__mockup { max-width: min(560px, 82%); }
  .hero__sub { font-size: .95rem; }
  .btn--cta { max-width: 520px; }
}

/* ============ RESPONSIVE (>=1024px) ============ */
@media (min-width: 1024px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--people { grid-template-columns: repeat(4, 1fr); }
  .oferta__box { max-width: 720px; margin: 1.6rem auto; }
}

/* ============ ACCESIBILIDAD ============ */
.faq summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }