﻿:root {
      --y:  #ffca05;
      --yd: #d4a900;
      --k:  #1a1a1a;
      --footer-bg: #080808;
      --r: 20px;
      --sh:  0 4px 24px rgba(0,0,0,.07);
      --sh2: 0 16px 48px rgba(0,0,0,.14);
      --ease: all .3s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
    @media (max-width: 991px) { html { scroll-padding-top: 100px; } }

    body {
      font-family: 'Outfit', system-ui, sans-serif;
      color: var(--k);
      background: #fff;
      overflow-x: hidden;
      max-width: 100vw;
      padding-top: 92px;
    }

    .py-section { padding: 96px 0; }
    @media (max-width: 768px) { .py-section { padding: 64px 0; } }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--yd);
      font-size: .73rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .eyebrow::before { content:''; display:inline-block; width:22px; height:2px; background:var(--y); border-radius:1px; }

    .sec-title {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
      font-weight: 800;
      line-height: 1.2;
    }
    .sec-lead {
      font-size: 1rem;
      line-height: 1.8;
      color: #6c757d;
      max-width: 540px;
    }
    .text-y  { color: var(--y)  !important; }
    .text-yd { color: var(--yd) !important; }
    .divider-y { width: 44px; height: 4px; background: var(--y); border-radius: 2px; margin: 10px 0 20px; }

    /* ── NAVBAR ── */
    .hm-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      background: rgba(18,18,18,.97);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 14px 0;
      transition: padding .3s, box-shadow .3s;
      z-index: 1050;
    }
    .hm-nav.scrolled { padding: 9px 0; box-shadow: 0 4px 28px rgba(0,0,0,.4); }
    .nav-logo { height: 64px; }
    .nav-logo:hover { opacity: .8; }
    .hm-nav .nav-link {
      color: rgba(255,255,255,.68);
      font-size: 1rem;
      font-weight: 500;
      padding: 7px 14px !important;
      border-radius: 8px;
      transition: var(--ease);
    }
    .hm-nav .nav-link:hover,
    .hm-nav .nav-link.active { color: var(--y); background: rgba(255,202,5,.07); }
    .btn-nav-in {
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.8) !important;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50px;
      padding: 7px 22px;
      font-size: .84rem;
      font-weight: 600;
      transition: var(--ease);
      text-decoration: none;
    }
    .btn-nav-in:hover { background: rgba(255,255,255,.14); color: #fff !important; }
    .btn-nav-reg {
      background: var(--y);
      color: var(--k) !important;
      border-radius: 50px;
      padding: 7px 22px;
      font-size: .84rem;
      font-weight: 700;
      border: none;
      transition: var(--ease);
      text-decoration: none;
    }
    .btn-nav-reg:hover { background: var(--yd); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,202,5,.35); }
    .navbar-toggler { border: none; padding: 6px; border-radius: 8px; }
    .navbar-toggler:focus { box-shadow: none; }
    .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E"); }

    /* ── HERO ── */
    .hero-item {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-color: #111;
      position: relative;
      display: flex;
      align-items: center;
      min-height: 78vh;
    }
    @media (max-width: 991px) { .hero-item { min-height: 80vh; background-position: 60% center; }
        .hm-nav .nav-link { line-height: 2em; font-size: 25px; } }
    @media (max-width: 768px)  { .hero-item { min-height: 85vh; background-position: 60% center; } }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, rgba(8,8,8,.93) 0%, rgba(8,8,8,.68) 52%, rgba(8,8,8,.2) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 130px 0 90px;
    }
    @media (max-width: 991px) { .hero-content { padding: 100px 16px 70px; } }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,202,5,.16);
      border: 1px solid rgba(255,202,5,.3);
      color: var(--y);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-title {
      font-size: clamp(2rem, 5.5vw, 3.9rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.14;
      margin-bottom: 18px;
    }
    .hero-title .hl { color: var(--y); }
    .hero-sub {
      font-size: clamp(.9rem, 1.4vw, 1.05rem);
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      max-width: 490px;
      margin-bottom: 36px;
    }
    .btn-hp {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--y); color: var(--k);
      border: none; border-radius: 50px;
      padding: 13px 28px; font-size: .93rem; font-weight: 700;
      text-decoration: none; transition: var(--ease);
    }
    .btn-hp:hover { background: var(--yd); color: var(--k); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,202,5,.4); }
    .btn-ho {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1);
      color: #fff; border: 1.5px solid rgba(255,255,255,.35);
      border-radius: 50px; padding: 13px 28px;
      font-size: .93rem; font-weight: 600;
      text-decoration: none; backdrop-filter: blur(6px);
      transition: var(--ease);
    }
    .btn-ho:hover { background: rgba(255,255,255,.2); color: #fff; border-color: rgba(255,255,255,.65); transform: translateY(-2px); }

    /* ── STATS BAR ── */
    .stats-bar { background: var(--k); padding: 32px 0; }
    .stat-item { text-align: center; }
    .stat-num { font-size: 2.1rem; font-weight: 900; color: var(--y); line-height: 1; }
    .stat-lbl { font-size: .77rem; color: rgba(255,255,255,.5); margin-top: 5px; }
    .stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.1); margin: auto; }

    /* ── FEAT ROW ── */
    .feat-row {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 15px 0; border-bottom: 1px solid #f3f3f3;
    }
    .feat-row:last-child { border-bottom: none; }
    .feat-icon {
      width: 46px; height: 46px; min-width: 46px;
      border-radius: 13px; background: rgba(255,202,5,.11);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.15rem; color: var(--yd);
    }
    .feat-title { font-weight: 700; font-size: .9rem; margin-bottom: 3px; }

    /* ── CTA BAND ── */
    .cta-band { background: linear-gradient(120deg, #0e0e0e 0%, #1e1e1e 100%); }

    /* ── FOOTER ── */
    .site-footer { background: var(--footer-bg); color: rgba(255,255,255,.5); padding: 72px 0 0; }
    .footer-logo { height: 32px; filter: brightness(0) invert(1); opacity: .8; }
    .footer-desc { font-size: .81rem; line-height: 1.75; color: rgba(255,255,255,.4); margin-top: 16px; max-width: 270px; }
    .footer-col-title { color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.46); font-size: .84rem; text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--y); }
    .footer-social { display: flex; gap: 10px; margin-top: 18px; }
    .footer-social a {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.55); font-size: .95rem;
      text-decoration: none; transition: var(--ease);
    }
    .footer-social a:hover { background: var(--y); border-color: var(--y); color: var(--k); transform: translateY(-2px); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 20px 0; margin-top: 56px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    }
    .footer-bottom p, .footer-bottom a { font-size: .76rem; color: rgba(255,255,255,.28); text-decoration: none; margin: 0; }
    .footer-bottom a:hover { color: var(--y); }

    /* ── FAB + BTT ── */
    .fab-wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 9999;
      width: 58px; height: 58px; border-radius: 50%;
      background: #25d366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
      font-size: 1.7rem; color: #fff; text-decoration: none;
      transition: var(--ease);
    }
    .fab-wa:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 32px rgba(37,211,102,.6); }
    #btt {
      position: fixed; bottom: 100px; right: 28px; z-index: 9999;
      width: 42px; height: 42px; border-radius: 50%;
      background: rgba(18,18,18,.88);
      border: 1px solid rgba(255,255,255,.1);
      display: none; align-items: center; justify-content: center;
      color: #fff; font-size: .95rem; cursor: pointer;
      backdrop-filter: blur(8px); text-decoration: none;
      transition: var(--ease);
    }
    #btt.show { display: flex; }
    #btt:hover { background: var(--y); color: var(--k); border-color: var(--y); }

    /* ── HERO BADGE FLOAT ── */
    .hero-badge-float {
      display: inline-flex; align-items: center; gap: 16px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(8px);
      border-radius: 16px; padding: 14px 22px;
      margin-top: 28px;
    }
    .hero-badge-float .num { font-size: 1.9rem; font-weight: 900; color: var(--y); line-height: 1; }
    .hero-badge-float .lbl { font-size: .72rem; color: rgba(255,255,255,.55); line-height: 1.4; }
    .hbf-sep { width: 1px; height: 34px; background: rgba(255,255,255,.15); }

    .main-img {
      width: 100%; border-radius: 24px;
      box-shadow: 0 24px 64px rgba(0,0,0,.15);
      object-fit: cover;
    }

    /* ── INFO SECTION ── */
    .info-text { font-size: .97rem; line-height: 1.8; color: #444; }
    .list-section-title { font-size: .95rem; font-weight: 700; margin-bottom: 14px; }
    .feat-row-sm { padding: 10px 0; }
    .feat-icon-sm { width: 34px; height: 34px; min-width: 34px; font-size: .9rem; }
    .feat-item-label { font-size: .88rem; font-weight: 500; }
    .hint-text { font-size: .9rem; color: #6c757d; margin-bottom: 20px; }

    /* ── BENEFICIOS ── */
    .bg-section-alt { background: #f8f9fa; }
    .eyebrow-center { justify-content: center; }
    .benefit-card { background: #fff; border-radius: 20px; padding: 30px 26px; height: 100%; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
    .benefit-title { font-size: 1.05rem; margin-bottom: 8px; }
    .benefit-text { font-size: .85rem; color: #6c757d; line-height: 1.7; margin: 0; }

    /* ── CTA BAND ── */
    .eyebrow-cta { color: rgba(255,202,5,.85); }
    .cta-desc { color: rgba(255,255,255,.6); font-size: .97rem; line-height: 1.75; max-width: 520px; }
    .btn-hp-lg { font-size: 1rem !important; padding: 16px 36px !important; }
    .cta-note { color: rgba(255,255,255,.35); font-size: .75rem; margin-top: 12px; }

    /* ── CTA PLAN CARD (same as index) ── */
    .plans-item { width: 100%; max-width: 380px; margin-left: auto; text-align: left; }
    .plan-card {
      background: #fff; border: 1.5px solid #efefef;
      border-radius: var(--r); padding: 32px 28px;
      position: relative; transition: var(--ease);
    }
    .plan-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
    .plan-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: rgba(255,202,5,.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--yd); margin-bottom: 18px;
    }
    .plan-name { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: #9ca3af; margin-bottom: 4px; }
    .plan-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
    .plan-price { font-size: 3rem; font-weight: 900; line-height: 1; margin: 14px 0 4px; }
    .plan-price sup { font-size: 1.1rem; top: -14px; position: relative; }
    .plan-per { font-size: .82rem; color: #9ca3af; }
    .plan-divider { height: 1px; background: #f0f0f0; margin: 20px 0; }
    .plan-features { list-style: none; padding: 0; margin: 0; }
    .plan-features li {
      font-size: .83rem; padding: 6px 0;
      display: flex; align-items: center; gap: 10px; color: #555;
    }
    .plan-features li i { color: var(--yd); font-size: .85rem; flex-shrink: 0; }
    .btn-plan {
      display: block; text-align: center; border-radius: 14px;
      padding: 13px; font-weight: 700; font-size: .9rem;
      text-decoration: none; transition: var(--ease); margin-top: 26px;
    }
    .btn-plan-outline { border: 2px solid var(--y); color: var(--k); background: transparent; }
    .btn-plan-outline:hover { background: var(--y); color: var(--k); }
    .plan-note { font-size: .73rem; color: #9ca3af; text-align: center; margin-top: 10px; }

    @media (max-width: 991px) {
      .plans-item { margin: 24px auto 0; }
    }

    /* ── FOOTER UTILITIES ── */
    .text-wa { color: #25d366; }
    .footer-promo-box { background: rgba(255,202,5,.08); border: 1px solid rgba(255,202,5,.15); border-radius: 14px; padding: 14px 16px; }
    .footer-promo-title { font-size: .72rem; color: rgba(255,202,5,.7); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
    .footer-promo-text { font-size: .82rem; color: rgba(255,255,255,.55); }

    /* ── MODAL REGISTRO ── */
    .modal-dialog-custom { max-width: 520px; }
    .modal-content-custom { border: none; border-radius: 24px; overflow: hidden; }
    .modal-header-dark { background: var(--k); padding: 28px 32px 24px; position: relative; }
    .modal-close-abs { position: absolute; top: 20px; right: 24px; opacity: .6; }
    .modal-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,202,5,.15); border: 1px solid rgba(255,202,5,.3); border-radius: 50px; padding: 5px 14px; font-size: .72rem; font-weight: 700; color: var(--y); letter-spacing: .07em; text-transform: uppercase; margin-bottom: 12px; }
    .modal-title-h { color: #fff; font-weight: 800; font-size: 1.35rem; margin: 0; }
    .modal-subtitle { color: rgba(255,255,255,.5); font-size: .83rem; margin: 6px 0 0; }
    .modal-body-custom { padding: 28px 32px 32px; background: #fff; }
    .form-label-custom { font-size: .8rem; font-weight: 700; color: var(--k); }
    .text-optional { color: #9ca3af; font-weight: 400; }
    .form-input-custom { border: 2px solid #e9ecef; border-radius: 12px; padding: 11px 16px; font-size: .9rem; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
    .form-input-custom:focus { border-color: var(--y) !important; box-shadow: 0 0 0 4px rgba(255,202,5,.14) !important; outline: none; }
    .form-error-box { background: #fef2f2; border: 1px solid #fca5a5; border-radius: 10px; padding: 10px 14px; font-size: .82rem; color: #dc3545; margin-bottom: 14px; }
    .btn-submit-dark { width: 100%; background: var(--k); color: var(--y); border: none; border-radius: 13px; padding: 14px; font-size: .95rem; font-weight: 700; font-family: inherit; cursor: pointer; transition: var(--ease); display: flex; align-items: center; justify-content: center; gap: 8px; }
    .btn-submit-dark:hover { background: #111; }
    .form-privacy { text-align: center; font-size: .72rem; color: #9ca3af; margin-top: 10px; }
    .success-state { text-align: center; padding: 16px 0; }
    .success-icon-circle { width: 68px; height: 68px; background: var(--y); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 16px; }
    .text-k { color: var(--k); }
    .success-title { font-weight: 800; margin-bottom: 8px; }
    .success-desc { color: #6c757d; font-size: .88rem; max-width: 320px; margin: 0 auto; }
    .btn-close-dark { margin-top: 22px; background: var(--k); color: var(--y); border: none; border-radius: 13px; padding: 11px 28px; font-size: .88rem; font-weight: 700; font-family: inherit; cursor: pointer; }
