:root {
    --navy: #0d1b2a;
    --navy2: #162032;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f5f0e8;
    --cream2: #ede6d8;
    --text: #1a1a2e;
    --muted: #6b7280;
    --white: #ffffff;
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,27,42,0.95);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 2rem;
    border-bottom: 1px solid rgba(201,168,76,.2);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
  }
  .nav-logo-eliyah {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .02em;
  }
  .nav-logo-gestor {
    font-family: 'DM Sans', sans-serif;
    font-size: .6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: .3em;
    text-transform: uppercase;
  }
  .nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-size: .8rem;
    font-weight: 500;
    padding: .45rem 1.1rem;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .6s .1s forwards;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    color: var(--white);
    line-height: 1.15;
    max-width: 780px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp .7s .25s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.65);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp .7s .4s forwards;
  }
  .hero-btns {
    display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
    opacity: 0;
    animation: fadeUp .7s .55s forwards;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-size: .9rem;
    font-weight: 500;
    padding: .85rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: .03em;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    font-weight: 400;
    padding: .85rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: border-color .2s, color .2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4.5rem;
    opacity: 0;
    animation: fadeUp .7s .7s forwards;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
  }
  .stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 2px;
  }

  /* ── SECTION BASE ── */
  section { padding: 6rem 1.5rem; }
  .container { max-width: 1000px; margin: 0 auto; }
  .section-tag {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 1.2rem;
  }
  .section-body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.8;
    max-width: 600px;
  }

  /* ── PROBLEM ── */
  .problem { background: var(--cream2); }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #d6cdb8;
    border: 1px solid #d6cdb8;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .problem-item {
    background: var(--cream2);
    padding: 2rem;
  }
  .problem-item .icon {
    font-size: 1.6rem;
    margin-bottom: .8rem;
    display: block;
  }
  .problem-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .5rem;
    color: var(--text);
  }
  .problem-item p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── SOLUTION / MODULES ── */
  .modules { background: var(--navy); }
  .modules .section-title { color: var(--white); }
  .modules .section-body { color: rgba(255,255,255,.5); }
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 3rem;
  }
  .module-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 14px;
    padding: 1.6rem;
    transition: border-color .25s, background .25s, transform .2s;
    position: relative;
    overflow: hidden;
  }
  .module-card:hover {
    border-color: rgba(201,168,76,.5);
    background: rgba(201,168,76,.05);
    transform: translateY(-2px);
  }
  .module-card.highlight {
    border-color: rgba(201,168,76,.45);
    background: rgba(201,168,76,.07);
  }
  .module-card.highlight::after {
    content: 'EXCLUSIVO';
    position: absolute; top: 14px; right: 14px;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .12em;
    background: var(--gold);
    color: var(--navy);
    padding: 3px 8px;
    border-radius: 20px;
  }
  .module-icon {
    font-size: 1.5rem;
    margin-bottom: .9rem;
    display: block;
  }
  .module-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: .4rem;
  }
  .module-desc {
    font-size: .84rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    font-weight: 300;
  }
  .module-price {
    margin-top: 1rem;
    font-size: .8rem;
    color: var(--gold);
    font-weight: 500;
  }

  /* ── DIFFERENTIALS ── */
  .diff { background: var(--cream); }
  .diff-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #d6cdb8;
    border: 1px solid #d6cdb8;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
  }
  .diff-item {
    background: var(--cream);
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.6rem 1.8rem;
    transition: background .2s;
  }
  .diff-item:hover { background: var(--cream2); }
  .diff-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
  }
  .diff-content h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: .35rem;
  }
  .diff-content p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── PRICING ── */
  .pricing { background: var(--cream2); }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 3rem;
  }
  .plan-card {
    background: var(--white);
    border: 1px solid #d6cdb8;
    border-radius: 16px;
    padding: 2rem;
    transition: transform .2s, box-shadow .2s;
  }
  .plan-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
  .plan-card.featured {
    background: var(--navy);
    border-color: var(--gold);
  }
  .plan-label {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .6rem;
  }
  .plan-card.featured .plan-label { color: var(--gold); }
  .plan-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .plan-card.featured .plan-name { color: var(--white); }
  .plan-price {
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
  }
  .plan-card.featured .plan-price { color: var(--gold); }
  .plan-period {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .plan-card.featured .plan-period { color: rgba(255,255,255,.4); }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
  .plan-features li {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 300;
    display: flex; align-items: center; gap: .5rem;
  }
  .plan-card.featured .plan-features li { color: rgba(255,255,255,.65); }
  .plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 500;
    font-size: .8rem;
    flex-shrink: 0;
  }
  .plan-btn {
    display: block;
    margin-top: 1.8rem;
    text-align: center;
    padding: .75rem;
    border-radius: 40px;
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: .2s;
  }
  .plan-btn-outline {
    border: 1px solid #d6cdb8;
    color: var(--text);
  }
  .plan-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .plan-btn-solid {
    background: var(--gold);
    color: var(--navy);
  }
  .plan-btn-solid:hover { background: var(--gold-light); }

  /* ── TESTIMONIAL ── */
  .testimonial { background: var(--navy); padding: 5rem 1.5rem; text-align: center; }
  .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: .5;
    margin-bottom: 1.5rem;
    opacity: .5;
  }
  .quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    color: var(--white);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
  }
  .quote-author {
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    letter-spacing: .08em;
  }

  /* ── CTA FINAL ── */
  .cta-final {
    background: var(--gold);
    padding: 6rem 1.5rem;
    text-align: center;
  }
  .cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 1rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }
  .cta-final p {
    font-size: 1rem;
    color: rgba(13,27,42,.65);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .cta-dark-btn {
    background: var(--navy);
    color: var(--gold);
    font-size: .95rem;
    font-weight: 500;
    padding: 1rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
  }
  .cta-dark-btn:hover { background: #0a1520; transform: translateY(-1px); }
  .cta-note {
    margin-top: 1.2rem;
    font-size: .8rem;
    color: rgba(13,27,42,.5);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    text-align: center;
    padding: 2rem;
    font-size: .78rem;
    color: rgba(255,255,255,.25);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 620px) {
    .problem-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 2rem; }
    .diff-item { grid-template-columns: 1fr; }
    .diff-num { font-size: 1.4rem; }
  }
