:root {
  --black: #090909;
  --black-soft: #111111;
  --charcoal: #171717;
  --gold: #c9a63a;
  --gold-soft: #e6cb71;
  --gold-bg: #f0e2a5;
  --light: #f7f4ea;
  --text: #f6f6f6;
  --muted: rgba(255,255,255,0.72);
  --muted-dark: rgba(0,0,0,0.72);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 60px rgba(0,0,0,0.28);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--gold-soft); }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: linear-gradient(90deg, #8d6b14, var(--gold), #f3db7f, var(--gold), #8d6b14);
  color: #111;
  text-align: center;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(9,9,9,0.84);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand img {
  width: 240px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 15px;
}

.site-nav a:hover { color: var(--gold-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 999px;
}

.section {
  padding: 84px 0;
}
.section-dark {
  background: radial-gradient(circle at top right, rgba(201,166,58,0.14), transparent 26%), linear-gradient(180deg, #0a0a0a, #111 55%, #0a0a0a);
}
.section-soft {
  background: linear-gradient(180deg, #111, #18150d);
}
.section-gold {
  background: linear-gradient(135deg, #e2c45d, #c9a63a 50%, #b58c1c);
  color: #131313;
}

.hero {
  padding: 78px 0 68px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero-copy h1 span {
  color: var(--gold-soft);
}
.lead {
  font-size: 1.1rem;
  color: var(--muted);
}
.hero-copy p { color: var(--muted); }
.hero-visual-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.hero-visual-card img {
  border-radius: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(230,203,113,0.36);
  background: rgba(201,166,58,0.1);
  color: var(--gold-soft);
  padding: 10px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.dark-pill {
  color: #111;
  border-color: rgba(17,17,17,0.14);
  background: rgba(255,255,255,0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #f2db81, var(--gold), #9d7618);
  color: #111;
}
.btn-outline {
  border-color: rgba(230,203,113,0.45);
  color: var(--gold-soft);
}
.btn-outline:hover {
  background: rgba(230,203,113,0.08);
}
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-light {
  background: #fff;
  color: #111;
}
.small-btn { padding: 11px 18px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 22px;
  padding: 18px 16px;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.center-head {
  text-align: center;
  margin-bottom: 34px;
}
.center-head.narrow { max-width: 860px; }
.center-head,
.center-head.narrow { margin-left: auto; margin-right: auto; }
.center-head h2,
.split-head h2,
.split-layout h2,
.creator-copy h2,
.contact-section h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.center-head p,
.split-head p,
.creator-copy p,
.contact-section p { color: var(--muted); }
.section-gold p,
.section-gold .contact-section p { color: var(--muted-dark); }

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

.info-card,
.mini-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  padding: 24px;
  box-shadow: var(--shadow);
}
.soft-card {
  background: rgba(255,255,255,0.74);
  color: #121212;
  border-color: rgba(0,0,0,0.08);
}
.soft-card p { color: rgba(0,0,0,0.74); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111;
  background: linear-gradient(135deg, #f0da80, var(--gold));
  margin-bottom: 16px;
}
.info-card h3,
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.info-card p,
.mini-card p { margin: 0; color: var(--muted); }

.compact-cards .mini-card {
  text-align: center;
  padding-top: 20px;
}
.compact-cards .mini-card strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0da80, var(--gold));
  color: #111;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.media-block {
  margin-bottom: 28px;
}
.feature-image {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
  color: var(--gold-soft);
}
.gold-checks li,
.section-gold .check-list li { color: rgba(0,0,0,0.76); }
.gold-checks li::before,
.section-gold .check-list li::before { color: #111; }

.creator-box {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}
.creator-logo img {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255,255,255,0.35);
  border-radius: 30px;
  padding: 24px;
  border: 1px solid rgba(17,17,17,0.12);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 700;
  font-size: 0.96rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17,17,17,0.12);
  font: inherit;
  color: #111;
  background: rgba(255,255,255,0.82);
}
.contact-form .full { grid-column: 1 / -1; }

.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}
.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}
.footer-logo {
  width: 220px;
  margin-bottom: 14px;
}
.copyright {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
  z-index: 999;
}

@media (max-width: 1120px) {
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .three-grid { grid-template-columns: repeat(2, 1fr); }
  .five-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid,
  .split-head,
  .split-layout,
  .contact-grid,
  .creator-box,
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(12,12,12,0.98);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 6px; }
  .site-nav .btn { margin-top: 6px; }
  .brand img { width: 200px; }
}

@media (max-width: 720px) {
  .section { padding: 66px 0; }
  .hero { padding-top: 56px; }
  .stats-grid,
  .contact-form,
  .four-grid,
  .three-grid,
  .five-grid { grid-template-columns: 1fr; }
  .info-card,
  .mini-card,
  .creator-box,
  .contact-form,
  .hero-visual-card { padding: 20px; }
  .topbar { font-size: 10px; letter-spacing: 0.08em; }
}


/* Ajuste de contraste para la sección de beneficios */
.section-soft .check-list li {
  color: rgba(255,255,255,0.86);
}

.section-soft .gold-checks li {
  color: rgba(255,255,255,0.9);
}

.section-soft .gold-checks li::before {
  color: var(--gold-soft);
}
