/* ==========================================================
   VELLEX CORE LÁSER — CSS
   ========================================================== */
:root {
    --ob: #0A0A0A;
    --d: #1C1C1E;
    --g: #D4AF37;
    --gl: #E8C84A;
    --w: #F2F2F7;
    --gray: rgba(242, 242, 247, 0.65);
    --bo: rgba(212, 175, 55, 0.25);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --pad: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--ob);
    color: var(--w);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--g);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad);
}

.pad-y {
    padding: 100px 0;
}

.gold-grad {
    background: linear-gradient(135deg, var(--g), var(--gl) 50%, #B8962E);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold {
    color: var(--g);
}

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

/* BTNS */
.btn-g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--g), #B8962E);
    color: var(--ob);
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    border: none;
    cursor: pointer;
}

.btn-g:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-o {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--w);
    padding: 0.9rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-o:hover {
    border-color: var(--g);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.btn-large {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
}

.full-w {
    width: 100%;
    margin-top: 1rem;
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    background: var(--ob);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.loader-logo {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.loader-logo .v,
.loader-logo .lex {
    color: var(--g);
}

.loader-logo .el {
    color: var(--w);
}

.loader-text {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--g);
    margin-top: 5px;
    opacity: 0.7;
}

.loader-progress {
    width: 250px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.lp-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--g);
    box-shadow: 0 0 10px var(--g);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.loaded #loader {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* CURSOR */
#cursor-halo {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s;
}

#cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--g);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 0 10px var(--g);
    transition: transform 0.2s;
}

body:hover #cursor-halo {
    width: 90px;
    height: 90px;
    border-color: rgba(212, 175, 55, 0.8);
}

body:active #cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

body:active #cursor-halo {
    transform: translate(-50%, -50%) scale(0.8);
}

/* CANVAS BG */
#laser-canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

/* NAVEGACION */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(16px);
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.8rem 0;
    border-bottom-color: var(--bo);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.nav-logo .v,
.nav-logo .lex {
    color: var(--g);
}

.nav-logo .el {
    color: var(--w);
}

.nav-div {
    font-size: 0.6rem;
    color: var(--g);
    letter-spacing: 0.15em;
    margin-top: 3px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--w);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--g);
}

.nav-cta {
    background: linear-gradient(135deg, var(--g), #B8962E);
    color: var(--ob) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown {
    position: relative;
}

.nav-dropbtn {
    cursor: pointer;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.nav-dropdown-content li {
    width: 100%;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    color: var(--w);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-dropdown-content a:hover {
    color: var(--g);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.n-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.n-ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--w);
    transition: 0.3s;
}

.n-ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.n-ham.open span:nth-child(2) {
    opacity: 0;
}

.n-ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mob-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid var(--bo);
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    color: var(--w);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mob-cta {
    color: var(--g) !important;
    font-weight: 700;
    border-bottom: none !important;
    margin-top: 1rem;
}

#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-rays {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.8;
}

.ray {
    position: absolute;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.3), transparent);
    filter: blur(30px);
    transform-origin: top;
    mix-blend-mode: screen;
}

.r1 {
    width: 120px;
    height: 150%;
    top: -20%;
    left: 15%;
    transform: rotate(-25deg);
    animation: pulseRay 4s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.r2 {
    width: 200px;
    height: 130%;
    top: -10%;
    right: 5%;
    transform: rotate(30deg);
    animation: pulseRay 6s infinite alternate-reverse cubic-bezier(0.4, 0, 0.2, 1);
}

.r3 {
    width: 90px;
    height: 140%;
    top: -15%;
    left: 45%;
    transform: rotate(10deg);
    animation: pulseRay 5s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseRay {
    0% {
        opacity: 0.2;
        transform: scaleY(0.8) rotate(var(--rot));
    }

    100% {
        opacity: 0.9;
        transform: scaleY(1.2) rotate(var(--rot));
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--g);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2) inset;
}

.h-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 2rem;
}

.h-desc {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 550px;
}

.h-desc strong {
    color: var(--w);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.h-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.h-trust {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-left: 2px solid var(--bo);
    padding-left: 1.5rem;
}

.t-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(242, 242, 247, 0.7);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--g);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--g);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* PROMO HERO CARD */
.hc-promo {
    perspective: 1200px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 5;
}

.promo-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

.promo-glass {
    background: linear-gradient(145deg, rgba(35, 35, 40, 0.85), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 3rem;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1) inset;
    transition: transform 0.1s;
}

.promo-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.2), transparent 70%);
    border-radius: 24px;
    pointer-events: none;
}

.pg-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    z-index: 20;
    background: linear-gradient(90deg, var(--g), var(--gl));
    color: var(--ob);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.6);
    transform: translateZ(50px);
}

.promo-glass h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    transform: translateZ(20px);
}

.pg-price {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 2rem;
    transform: translateZ(25px);
}

.pg-price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
}

.price-now {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.price-now span {
    font-size: 1.2rem;
    font-weight: 700;
}

.pg-timer {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    justify-content: space-between;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transform: translateZ(30px);
}

@media (max-width: 900px) {
    .hc-promo {
        width: 100%;
        margin-left: 0;
    }

    .split-promo-box {
        flex-direction: column;
    }

    .sp-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }
}

.promo-glass {
    background: linear-gradient(145deg, rgba(35, 35, 40, 0.85), rgba(15, 15, 18, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1) inset;
    transition: transform 0.1s;
}

.stack-timer {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    transform: translateZ(25px);
}

.tb {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    width: 70px;
    padding: 0.8rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) inset;
}

.tb span {
    font-size: 1.8rem;
    color: var(--w);
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.tb small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--g);
}

.promo-glass .btn-g {
    transform: translateZ(40px);
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* SECTIONS HEADERS */
.sec-head {
    max-width: 600px;
    margin-bottom: 4rem;
}

/* AXILAS BANNER */
#promo-axilas {
    background: var(--bg);
}

.axilas-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(35, 35, 40, 0.6), rgba(15, 15, 18, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 4rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.axilas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ax-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--g);
    color: var(--g);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) inset;
}

.ax-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ax-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
}

.ax-info p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.ax-msi-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--w);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--g);
}

.ax-action {
    background: rgba(0, 0, 0, 0.4);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 350px;
    text-align: center;
}

.ax-price {
    margin-bottom: 2rem;
}

.ax-price del {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.ax-price-now {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--g);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.ax-price-now span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--w);
    margin-top: 0.5rem;
}

.ax-btn {
    font-size: 1.1rem;
    padding: 1.2rem;
    width: 100%;
}

@media (max-width: 900px) {
    .ax-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .axilas-banner {
        padding: 2rem;
    }

    .ax-action {
        min-width: 100%;
    }
}

.sec-head.text-center {
    margin: 0 auto 4rem;
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.s-desc {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.6;
}

/* BENTO GRID TILT CARDS */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1500px;
}

.b-card {
    background: linear-gradient(145deg, rgba(28, 28, 30, 0.7), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.5s, box-shadow 0.5s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.b-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.15) inset;
}

.b-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.b-card:hover::before {
    opacity: 1;
}

.b-large {
    grid-column: span 3;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.b-content {
    position: relative;
    z-index: 1;
    transform: translateZ(30px);
    max-width: 500px;
}

.b-large .b-content {
    max-width: 700px;
}

.b-icon {
    font-size: 3rem;
    color: var(--g);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transform: translateZ(40px);
    display: inline-block;
}

.b-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    transform: translateZ(35px);
}

.b-large h3 {
    font-size: 3rem;
}

.b-card p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    transform: translateZ(25px);
}

.b-tag {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    border: 1px solid var(--g);
    color: var(--ob);
    background: var(--g);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateZ(50px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.b-bg {
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    transition: 0.5s;
    transform: translateZ(10px);
}

.b-card:hover .b-bg {
    transform: translateZ(20px) scale(1.1);
}

/* REVEAL ANIMATIONS */
.reveal-up {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.stagg {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(10px);
}

/* BREAK BAND PARALLAX */
.break-band {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin: 6rem 0;
}

.para-bg {
    position: absolute;
    inset: -150px;
    background: linear-gradient(135deg, #050505, #121215);
    z-index: 0;
}

.para-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 150px, rgba(212, 175, 55, 0.03) 150px, rgba(212, 175, 55, 0.03) 151px);
}

.bb-content {
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.bb-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

/* PAQUETES VELLEX ACCESS */
.bg-glass {
    background: rgba(28, 28, 30, .3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pkg-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pkg-col {
    background: var(--ob);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transform-style: preserve-3d;
    transition: 0.4s;
}

.pkg-col:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.pkg-col.featured {
    background: linear-gradient(160deg, #1C1C1E, #0A0A0A);
    border-color: var(--bo);
}

.feat-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--g);
    color: var(--ob);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 999px;
}

.pc-head {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

.pc-head h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pc-price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.pc-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.pc-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pc-list li {
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.pc-list li::before {
    content: '✦';
    color: var(--g);
    font-size: 0.7rem;
    margin-right: 10px;
    opacity: 0.7;
}

.pc-finance {
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 1rem;
}

.pc-finance strong {
    color: var(--g);
}

/* METODO VERTICAL LINE */
.line-process {
    position: relative;
    padding-left: 4rem;
    margin-top: 4rem;
}

.lp-line {
    position: absolute;
    left: 4rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(-50%);
    border-radius: 2px;
}

.lp-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--g), var(--gl));
    box-shadow: 0 0 15px var(--g);
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.lp-step {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.lp-step:last-child {
    margin-bottom: 0;
}

.lp-dot {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--ob);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 0px rgba(212, 175, 55, 0);
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-step.active .lp-dot {
    background: linear-gradient(135deg, var(--g), var(--gl));
    border-color: transparent;
    color: var(--ob);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateX(-50%) scale(1.2);
}

.lp-content {
    padding-top: 5px;
    flex: 1;
    max-width: 650px;
    opacity: 0.4;
    transform: translateX(30px) translateZ(0);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-step.active .lp-content {
    opacity: 1;
    transform: translateX(0) translateZ(40px);
}

.lp-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--w);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.lp-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* FINAL CTA */
.final-cta {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    background: #050505;
}

#spark-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* FOOTER */
#footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.f-legal-top {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
}

.f-btm {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 900px;
}

.f-copy {
    font-size: 0.7rem;
    color: var(--g);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* FLOATING WA */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 990;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    transform-style: preserve-3d;
}

.wa-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* EXIT MODAL */
#exit-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
}

#exit-modal.show {
    pointer-events: auto;
    opacity: 1;
}

.em-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.em-box {
    position: relative;
    background: linear-gradient(135deg, #1C1C1E, #0A0A0A);
    padding: 3rem;
    border: 1px solid var(--g);
    border-radius: 16px;
    max-width: 450px;
    text-align: center;
    transform: scale(0.9);
    transition: 0.5s var(--ease);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

#exit-modal.show .em-box {
    transform: scale(1);
}

.em-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
}

.tag-gold {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--g);
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.em-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.em-box p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.em-box strong {
    color: var(--w);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .h-desc {
        margin: 0 auto 2.5rem;
    }

    .h-actions {
        justify-content: center;
    }

    .h-trust {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
    }

    .promo-glass {
        margin: 0 auto;
        max-width: 450px;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .b-large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .n-ham {
        display: flex;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .b-large {
        grid-column: span 1;
        min-height: auto;
    }

    .b-tag {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-top: 1.5rem;
    }

    .pkg-wrapper {
        grid-template-columns: 1fr;
    }

    .f-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .f-legal-top {
        text-align: left;
    }

    .wa-float span {
        display: none;
    }

    .wa-float {
        padding: 1rem;
        border-radius: 50%;
    }
}