:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #1c1917;
  --accent: #facc15;
  --bg: #fffaf0;
  --bg-soft: #fff3d6;
  --white: #ffffff;
  --text: #292524;
  --muted: #78716c;
  --border: #f1dfbc;
  --danger: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.narrow {
  max-width: 850px;
}

.section {
  padding: 95px 0;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--secondary);
  margin-bottom: 18px;
}

.section-heading p,
.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
}

.header-btn {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.header-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  transform: translateY(-3px);
}

.full {
  width: 100%;
}

/* HERO */

.hero {
  padding: 100px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.12), transparent 35%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 620px;
}

.trust-row div {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 18px;
}

.trust-row strong {
  display: block;
  font-size: 1.45rem;
  color: var(--secondary);
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 32px -18px -18px 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 34px;
  z-index: 0;
  opacity: 0.25;
}

.product-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.83rem;
  margin-bottom: 24px;
}

.product-box h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.product-box p {
  color: var(--muted);
  margin-bottom: 24px;
}

.product-box ul {
  margin-bottom: 28px;
}

.product-box li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

/* PROBLEM */

.problem {
  background: var(--white);
}

.problem .narrow {
  text-align: center;
}

.problem h2 {
  max-width: 780px;
  margin-inline: auto;
}

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

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  color: var(--secondary);
  font-weight: 700;
  text-align: left;
}

/* SOLUTION */

.solution {
  background: var(--bg-soft);
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 18px;
}

.solution-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.solution-item span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.solution-item h3 {
  color: var(--secondary);
  margin-bottom: 4px;
}

/* BENEFITS */

.benefits {
  background: var(--white);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
}

/* AUDIENCE */

.audience {
  background: var(--secondary);
}

.audience h2 {
  color: var(--white);
}

.audience-box {
  padding: 38px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-box.positive {
  background: rgba(34, 197, 94, 0.1);
}

.audience-box.negative {
  background: rgba(239, 68, 68, 0.1);
}

.audience-box ul {
  margin-top: 24px;
}

.audience-box li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #dbeafe;
}

.audience-box.positive li::before {
  content: "✓";
  color: var(--accent);
}

.audience-box.negative li::before {
  content: "×";
  color: #f87171;
}

.audience-box li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

/* STEPS */

.steps {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.step span {
  width: 62px;
  height: 62px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: 900;
}

.step h3 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

/* TESTIMONIALS */

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.testimonial p {
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 24px;
}

.testimonial strong {
  display: block;
  color: var(--secondary);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* OFFER */

.offer {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 35%),
    var(--secondary);
}

.offer h2,
.offer h3 {
  color: var(--white);
}

.offer p {
  color: #cbd5e1;
}

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

.included {
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px;
  border-radius: 24px;
}

.included h3 {
  margin-bottom: 18px;
}

.included li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.price-card {
  background: var(--white);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  color: var(--secondary);
  font-size: 1.7rem;
  margin: 18px 0;
}

.discount {
  display: inline-block;
  background: rgba(245, 158, 11, 0.14);
  color: #b45309;
  font-weight: 900;
  padding: 8px 14px;
  border-radius: 999px;
}

.price {
  margin-bottom: 18px;
}

.old-price {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.price strong {
  display: block;
  color: var(--secondary);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price small {
  color: var(--muted);
  font-weight: 700;
}

.price-note {
  color: var(--muted) !important;
  margin-bottom: 24px;
}

.secure {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* BONUSES */

.bonuses {
  background: var(--bg-soft);
}

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

.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 32px;
}

.bonus-card span {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 14px;
}

.bonus-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
}

/* GUARANTEE */

.guarantee {
  background: var(--white);
}

.guarantee-box {
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.guarantee-icon {
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 2.2rem;
  font-weight: 900;
}

/* URGENCY */

.urgency {
  background: var(--bg);
}

.urgency-box {
  text-align: center;
  max-width: 820px;
  background: var(--secondary);
  color: var(--white);
  padding: 52px;
  border-radius: 34px;
}

.urgency-box h2 {
  color: var(--white);
}

.urgency-box p {
  color: #cbd5e1;
  margin-bottom: 28px;
}

/* FAQ */

.faq {
  background: var(--white);
}

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

.faq-item h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--muted);
}

/* FINAL CTA */

.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.final-cta-box {
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.final-cta p {
  color: #dbeafe;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* FOOTER */

.footer {
  background: var(--secondary);
  color: #cbd5e1;
  padding: 34px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer a {
  margin-left: 18px;
  color: #cbd5e1;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }

  .cards-grid,
  .steps-grid,
  .testimonial-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 70px 0;
  }

  .header-content {
    height: 68px;
  }

  .header-btn {
    display: none;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .pain-grid,
  .cards-grid,
  .steps-grid,
  .testimonial-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .product-box,
  .price-card,
  .audience-box,
  .guarantee-box,
  .urgency-box {
    padding: 28px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }

  .price strong {
    font-size: 3.2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer a {
    margin: 0 8px;
  }
}

/* CUSTOM - ILUMINA Y CREA VELAS ARTESANALES */
.hero {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.22), transparent 35%),
    radial-gradient(circle at bottom right, rgba(250, 204, 21, 0.20), transparent 35%),
    var(--bg);
}

.hero-card::before {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.30;
}

.product-box {
  position: relative;
  overflow: hidden;
}

.product-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: rgba(245, 158, 11, 0.12);
}

.product-box > * {
  position: relative;
  z-index: 2;
}

.badge {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.course-note {
  margin-top: 16px;
  font-size: 0.92rem !important;
  color: var(--muted) !important;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.application-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
}

.application-card h3 {
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.application-card p {
  color: var(--muted);
}

.beenexen {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 35%),
    linear-gradient(135deg, #1c1917 0%, #292524 100%);
}

.beenexen h2 {
  color: var(--white);
}

.beenexen p {
  color: #fde68a;
}

.beenexen-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.beenexen .section-label {
  background: rgba(255, 255, 255, 0.10);
  color: #fde68a;
}

.beenexen-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.beenexen-card h3 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 6px;
}

.beenexen-card p {
  margin-bottom: 22px;
  color: #fde68a;
}

.beenexen-card ul {
  margin-bottom: 26px;
}

.beenexen-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #fffbeb;
  font-weight: 700;
}

.beenexen-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.price strong {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.disclaimer {
  padding: 28px;
  border-radius: 24px;
  background: #fffbeb;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .beenexen-box,
  .application-grid {
    grid-template-columns: 1fr;
  }
}
