/* =========================
   RESET + VARIABLES
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

:root{
    --zv-gold:#d4af37;
    --zv-gold-light:#f6d878;
    --zv-black:#050505;
    --zv-dark:#0f0f0f;
    --zv-white:#ffffff;
    --zv-gray:#bdbdbd;

    --zv-gradient:
    linear-gradient(
        135deg,
        #d4af37,
        #f6d878,
        #b8860b
    );
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:white;
    overflow-x:hidden;
}



/* =========================================
   NAVBAR ULTRA GLASS PREMIUM
========================================= */

#navbar{
    position:fixed;

    top:16px;
    left:50%;

    transform:translateX(-50%);

    width:calc(100% - 180px);
/* DEJA ESPACIO PARA LOS ICONOS */

    max-width:1240px;

    height:72px;

    padding:0 30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    z-index:9999;

    border-radius:999px;

    background:
    linear-gradient(
        180deg,
        rgba(20,20,20,.62),
        rgba(10,10,10,.82)
    );

    backdrop-filter:
    blur(22px)
    saturate(180%);

    -webkit-backdrop-filter:
    blur(22px)
    saturate(180%);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 10px 40px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.04);

    transition:.4s ease;

    overflow:visible;
}
/* HOVER GENERAL */
#navbar:hover{
    transform:
    translateX(-50%)
    translateY(-2px);

    box-shadow:
    0 15px 55px rgba(0,0,0,.55),
    0 0 25px rgba(212,175,55,.06);
}

/* =========================================
   CENTRADO PERFECTO MENU
========================================= */

.zv-main-navigation{
    flex:1;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:5px;
}

/* =========================================
   ESPACIADO ELEGANTE
========================================= */

.zv-nav-item a{
    padding:11px 18px;
}

/* =========================================
   ICONOS FLOTANTES
========================================= */

.zv-floating-ai{
    left:18px;
}

.zv-floating-user{
    right:18px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    #navbar{
        width:calc(100% - 140px);
    }

}

@media(max-width:768px){

    #navbar{
        width:92%;

        padding:0 18px;
    }

    .zv-floating-ai,
    .zv-floating-user{
        display:none;
    }

}

/* =========================================
   IZQUIERDA
========================================= */

.zv-left{
    display:flex;
    align-items:center;

    gap:22px;

    min-width:max-content;
}

/* ICONO PERFIL */
.zv-profile-btn{
    width:44px;
    height:44px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(212,175,55,.65);

    color:#d4af37;

    font-size:.95rem;

    cursor:pointer;

    transition:.35s ease;
}

.zv-profile-btn:hover{
    transform:scale(1.06);

    background:
    rgba(212,175,55,.12);

    box-shadow:
    0 0 20px rgba(212,175,55,.25);
}

/* =========================================
   LOGO
========================================= */

.zv-brand-logo{
    display:flex;
    align-items:center;
    gap:7px;

    font-size:1.15rem; /* MÁS PEQUEÑO */

    font-weight:800;

    letter-spacing:3px;

    cursor:pointer;

    user-select:none;
}

.zv-brand-main{
    color:white;
}

.zv-brand-vip{
    background:
    linear-gradient(
        135deg,
        #ffd54a,
        #fff4b8,
        #d4a700
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* =========================================
   SEARCH ULTRA PREMIUM
========================================= */

.zv-search-wrapper{
    position:relative;

    width:215px;

    display:flex;
    align-items:center;
}

/* INPUT */
.zv-search-wrapper input{
    width:100%;

    height:43px;

    padding:
    0 48px 0 18px;

    border:none;
    outline:none;

    border-radius:999px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.04)
    );

    backdrop-filter:
    blur(20px)
    saturate(180%);

    -webkit-backdrop-filter:
    blur(20px)
    saturate(180%);

    border:
    1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:.83rem;
    font-weight:500;

    letter-spacing:.3px;

    transition:
    .4s ease;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 18px rgba(0,0,0,.18);
}

/* PLACEHOLDER */
.zv-search-wrapper input::placeholder{
    color:rgba(255,255,255,.42);

    letter-spacing:.5px;

    transition:.35s ease;
}

/* FOCUS */
.zv-search-wrapper input:focus{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.14),
        rgba(255,255,255,.05)
    );

    border:
    1px solid rgba(212,175,55,.35);

    box-shadow:
    0 0 25px rgba(212,175,55,.14),
    0 0 55px rgba(212,175,55,.06),
    inset 0 1px 0 rgba(255,255,255,.08);

    transform:
    translateY(-1px)
    scale(1.01);
}

/* ICONO */
.zv-search-trigger{
    position:absolute;

    right:20px;
    top:50%;

    transform:translateY(-50%);

    color:rgba(255,255,255,.52);

    font-size:.88rem;

    pointer-events:none;

    transition:.35s ease;

    text-shadow:
    0 0 10px rgba(255,255,255,.08);
}

/* ICONO FOCUS */
.zv-search-wrapper input:focus
~ .zv-search-trigger{

    color:#ffd54a;

    text-shadow:
    0 0 12px rgba(255,215,100,.45),
    0 0 24px rgba(255,215,100,.20);
}

/* EFECTO HOVER */
.zv-search-wrapper:hover input{

    border:
    1px solid rgba(255,255,255,.12);

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.05)
    );
}
/* =========================================
   MENU
========================================= */

.zv-main-navigation{
    display:flex;
    align-items:center;
    gap:3px;
}

/* ITEM */
.zv-nav-item{
    list-style:none;
    position:relative;
}

/* LINKS */
.zv-nav-item a{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:11px 17px;

    border-radius:999px;

    text-decoration:none;

    color:rgba(255,255,255,.82);

    font-size:.90rem;

    font-weight:600;

    transition:.35s ease;

    overflow:hidden;
}

/* EFECTO */
.zv-nav-item a::before{
    content:'';

    position:absolute;
    inset:0;

    border-radius:999px;

    background:
    rgba(255,255,255,.06);

    opacity:0;

    transform:scale(.7);

    transition:.35s ease;
}

.zv-nav-item a:hover{
    color:white;

    transform:translateY(-1px);
}

.zv-nav-item a:hover::before{
    opacity:1;
    transform:scale(1);
}

/* ACTIVO */
.zv-nav-item.active a{
    background:
    rgba(255,255,255,.07);

    color:white;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05);
}

/* =========================================
   DROPDOWN
========================================= */

.zv-dropdown-menu{
    position:absolute;

    top:60px;
    left:0;

    min-width:220px;

    padding:12px;

    border-radius:26px;

    background:
    rgba(12,12,12,.88);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.06);

    box-shadow:
    0 12px 40px rgba(0,0,0,.45);

    opacity:0;
    visibility:hidden;

    transform:
    translateY(10px)
    scale(.95);

    transition:.35s ease;
}

/* SHOW */
.zv-dropdown-item:hover
.zv-dropdown-menu{
    opacity:1;
    visibility:visible;

    transform:
    translateY(0)
    scale(1);
}

/* LINKS DROPDOWN */
.zv-dropdown-menu li{
    list-style:none;
}

.zv-dropdown-menu li a{
    display:block;

    padding:12px 16px;

    border-radius:999px;

    color:rgba(255,255,255,.72);

    transition:.3s ease;
}

.zv-dropdown-menu li a:hover{
    background:
    rgba(255,255,255,.06);

    color:white;

    padding-left:22px;
}

/* =========================================
   BOTON DERECHA
========================================= */

.zv-right-btn{
    width:44px;
    height:44px;

    border-radius:50%;

    overflow:hidden;

    border:
    1px solid rgba(0,170,255,.65);

    background:
    rgba(255,255,255,.04);

    cursor:pointer;

    transition:.35s ease;
}

.zv-right-btn img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.zv-right-btn:hover{
    transform:scale(1.08);

    box-shadow:
    0 0 25px rgba(0,170,255,.28);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

    #navbar{
        height:auto;

        padding:18px;

        flex-direction:column;

        gap:18px;

        border-radius:38px;
    }

    .zv-main-navigation{
        flex-wrap:wrap;
        justify-content:center;
    }

}

@media(max-width:768px){

    .zv-brand-logo{
        font-size:1rem;
    }

    .zv-nav-item a{
        padding:10px 14px;
        font-size:.82rem;
    }

    .zv-search-wrapper{
        width:100%;
    }

}

@media(max-width:500px){

    .zv-search-wrapper{
        display:none;
    }

}

/* =========================================
   BRILLO DORADO PREMIUM
========================================= */

#navbar::before{
    content:'';

    position:absolute;
    inset:-1px;

    border-radius:999px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.18),
        transparent
    );

    opacity:.9;

    z-index:-1;

    filter:blur(12px);
}

/* REFLEJO SUPERIOR */
#navbar::after{
    content:'';

    position:absolute;

    top:0;
    left:8%;

    width:84%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,230,150,.7),
        transparent
    );
}

/* =========================================
   LINKS ELEGANTES
========================================= */

.zv-nav-item a{
    position:relative;
}

/* LINEA DORADA */
.zv-nav-item a::after{
    content:'';

    position:absolute;

    bottom:6px;
    left:50%;

    width:0%;
    height:2px;

    border-radius:999px;

    background:
    linear-gradient(
        90deg,
        #d4af37,
        #ffe27a,
        #d4af37
    );

    transform:translateX(-50%);

    transition:.35s ease;

    box-shadow:
    0 0 10px rgba(212,175,55,.45);
}

/* HOVER */
.zv-nav-item a:hover::after{
    width:65%;
}

/* TEXTO HOVER */
.zv-nav-item a:hover{
    color:#fff;

    text-shadow:
    0 0 8px rgba(255,215,100,.25);
}

/* =========================================
   LOGO GLOW
========================================= */

.zv-brand-logo{
    text-shadow:
    0 0 12px rgba(212,175,55,.08);
}

/* VIP GOLD */
.zv-brand-vip{
    filter:
    drop-shadow(0 0 6px rgba(212,175,55,.25));
}

/* =========================================
   BOTON PERFIL
========================================= */

.zv-profile-btn{
    box-shadow:
    0 0 18px rgba(212,175,55,.12),
    inset 0 0 10px rgba(212,175,55,.06);
}

/* HOVER PERFIL */
.zv-profile-btn:hover{
    box-shadow:
    0 0 28px rgba(212,175,55,.35),
    inset 0 0 12px rgba(212,175,55,.12);
}

/* =========================================
   BOTON DERECHA
========================================= */

.zv-right-btn{
    box-shadow:
    0 0 18px rgba(0,170,255,.10);
}

/* =========================================
   EFECTO PREMIUM GENERAL
========================================= */

#navbar:hover{
    box-shadow:
    0 18px 60px rgba(0,0,0,.58),
    0 0 40px rgba(212,175,55,.10);
}

/* =========================================
   GLOW EN TODAS LAS LETRAS
========================================= */

/* LINKS NAV */
.zv-nav-item a{
    text-shadow:
    0 0 6px rgba(255,255,255,.05),
    0 0 12px rgba(255,255,255,.03);

    transition:
    .35s ease,
    text-shadow .35s ease;
}

/* HOVER LINKS */
.zv-nav-item a:hover{
    color:#fff;

    text-shadow:
    0 0 8px rgba(255,255,255,.22),
    0 0 18px rgba(212,175,55,.28),
    0 0 30px rgba(212,175,55,.12);
}

/* LINK ACTIVO */
.zv-nav-item.active a{
    text-shadow:
    0 0 10px rgba(255,255,255,.18),
    0 0 20px rgba(212,175,55,.20);
}

/* =========================================
   LOGO
========================================= */

.zv-brand-main{
    color:#fff;

    text-shadow:
    0 0 8px rgba(255,255,255,.18),
    0 0 18px rgba(255,255,255,.06);
}

.zv-brand-vip{
    text-shadow:
    0 0 10px rgba(255,215,100,.30),
    0 0 25px rgba(212,175,55,.25),
    0 0 40px rgba(212,175,55,.12);
}

/* =========================================
   PLACEHOLDER SEARCH
========================================= */

.zv-search-wrapper input::placeholder{
    color:rgba(255,255,255,.52);

    text-shadow:
    0 0 8px rgba(255,255,255,.05);
}

/* TEXTO SEARCH */
.zv-search-wrapper input{
    text-shadow:
    0 0 6px rgba(255,255,255,.08);
}

/* =========================================
   ICONOS
========================================= */

.zv-profile-btn i,
.zv-search-trigger,
.zv-right-btn i{
    text-shadow:
    0 0 10px rgba(212,175,55,.25),
    0 0 20px rgba(212,175,55,.12);
}

/* =========================================
   NAVBAR POSITION
========================================= */

#navbar{
    overflow:visible;
}

/* =========================================
   BOTON IA IZQUIERDA
========================================= */

.zv-floating-ai{
    position:fixed;

    top:26px;
    left:18px;

    width:52px;
    height:52px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:10000;

    cursor:pointer;

    color:#ffd54a;

    font-size:1.2rem;

    background:
    rgba(10,10,10,.72);

    backdrop-filter:
    blur(18px);

    border:
    1px solid rgba(255,215,100,.65);

    box-shadow:
    0 0 20px rgba(255,215,100,.18),
    inset 0 0 12px rgba(255,215,100,.05);

    transition:.35s ease;
}

/* HOVER */
.zv-floating-ai:hover{
    transform:
    scale(1.08);

    box-shadow:
    0 0 30px rgba(255,215,100,.35),
    0 0 60px rgba(255,215,100,.12);
}

/* =========================================
   BOTON USER DERECHA
========================================= */

.zv-floating-user{
    position:fixed;

    top:26px;
    right:18px;

    width:52px;
    height:52px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:10000;

    cursor:pointer;

    color:#00bfff;

    font-size:1.2rem;

    background:
    rgba(10,10,10,.72);

    backdrop-filter:
    blur(18px);

    border:
    1px solid rgba(0,170,255,.65);

    box-shadow:
    0 0 20px rgba(0,170,255,.18),
    inset 0 0 12px rgba(0,170,255,.05);

    transition:.35s ease;
}

/* HOVER */
.zv-floating-user:hover{
    transform:
    scale(1.08);

    box-shadow:
    0 0 30px rgba(0,170,255,.35),
    0 0 60px rgba(0,170,255,.12);
}

/* =========================================
   GLOW ICONOS
========================================= */

.zv-floating-ai i{
    text-shadow:
    0 0 12px rgba(255,215,100,.45),
    0 0 24px rgba(255,215,100,.20);
}

.zv-floating-user i{
    text-shadow:
    0 0 12px rgba(0,170,255,.45),
    0 0 24px rgba(0,170,255,.20);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .zv-floating-ai,
    .zv-floating-user{
        width:46px;
        height:46px;

        font-size:1rem;
    }

}



/* ==========================================
   HERO VIP CINEMATOGRÁFICO
========================================== */

.zv-hero-banner{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000;
}

/* VIDEO */

.zv-hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* OVERLAY */

.zv-dark-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.85) 100%
    );
    z-index:2;
}

/* CONTENEDOR */

.zv-hero-content{
    position:relative;
    z-index:5;

    width:90%;
    max-width:1400px;
    height:100%;

    margin:auto;

    display:grid;
    grid-template-columns:1fr 320px;
    align-items:center;
    gap:80px;
}

/* ==========================================
   IZQUIERDA
========================================== */

.zv-hero-left{
    max-width:700px;
}

.zv-hero-label{
    display:inline-block;
    padding:12px 26px;

    border-radius:50px;

    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.25);

    color:#d4af37;

    font-size:.85rem;
    font-weight:700;
    letter-spacing:3px;

    margin-bottom:30px;
}

.zv-hero-title{
    margin:0;

    color:#fff;

    font-size:clamp(4rem,8vw,8rem);

    line-height:.95;

    font-weight:900;

    letter-spacing:-4px;

    text-transform:uppercase;
}

.zv-hero-title span{
    background:
    linear-gradient(
        135deg,
        #fff4b5,
        #d4af37,
        #ffd95c
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.zv-hero-line{
    width:160px;
    height:4px;

    margin-top:35px;

    border-radius:50px;

    background:
    linear-gradient(
        90deg,
        #d4af37,
        transparent
    );
}

/* ==========================================
   TARJETA DERECHA
========================================== */

.zv-hero-right{

    justify-self:end;

    width:100%;
    max-width:320px;

    padding:30px;

    border-radius:28px;

    background:
    rgba(0,0,0,.35);

    backdrop-filter:blur(18px);

    border:1px solid rgba(212,175,55,.15);

    box-shadow:
    0 20px 60px rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    gap:22px;
}

/* CONTACTOS */

.zv-contact-item{
    display:flex;
    align-items:center;
    gap:15px;

    color:#fff;
}

.zv-contact-item i{

    width:52px;
    height:52px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    color:#d4af37;

    background:
    rgba(212,175,55,.08);

    border:
    1px solid rgba(212,175,55,.20);
}

.zv-contact-item span,
.zv-contact-item a{

    color:#fff;
    text-decoration:none;

    font-size:1rem;
    font-weight:500;

    word-break:break-word;
}

/* SEPARADOR */

.zv-contact-divider{
    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.4),
        transparent
    );
}

/* REDES */

.zv-socials{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.zv-socials a{

    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    text-decoration:none;

    color:#fff;

    font-size:1.2rem;

    background:
    rgba(212,175,55,.05);

    border:
    1px solid rgba(212,175,55,.20);

    transition:.35s;
}

.zv-socials a:hover{

    background:#d4af37;
    color:#000;

    transform:translateY(-4px);
}

/* ==========================================
   ANIMACIONES
========================================== */

.zv-hero-left{
    animation:heroLeft 1s ease;
}

.zv-hero-right{
    animation:heroRight 1s ease;
}

@keyframes heroLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes heroRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:1000px){

    .zv-hero-content{

        grid-template-columns:1fr;
        text-align:center;

        gap:40px;
    }

    .zv-hero-left{
        margin:auto;
    }

    .zv-hero-right{

        margin:auto;
        justify-self:center;
    }

    .zv-hero-line{
        margin:35px auto 0;
    }

}

/* ==========================================
   MOVIL
========================================== */

@media(max-width:768px){

    .zv-hero-title{
        font-size:4rem;
        letter-spacing:-2px;
    }

    .zv-hero-right{
        padding:25px;
        max-width:100%;
    }

    .zv-contact-item span,
    .zv-contact-item a{
        font-size:.92rem;
    }

}





/* =========================================
   LOGIN MODAL PREMIUM
========================================= */

.zv-auth-modal{
    position:fixed;
    inset:0;

    width:100%;
    height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(0,0,0,.78);

    backdrop-filter:blur(10px);

    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

/* ACTIVO */
.zv-auth-modal.active{
    opacity:1;
    visibility:visible;
}

/* =========================================
   LOGIN BOX MAS PEQUEÑO
========================================= */

.zv-auth-box{
    position:relative;

    width:92%;
    max-width:430px;

    padding:32px 28px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(16,16,16,.97),
        rgba(5,5,5,.98)
    );

    border:
    1px solid rgba(212,175,55,.18);

    box-shadow:
    0 0 35px rgba(0,0,0,.65),
    0 0 70px rgba(212,175,55,.06);

    overflow:hidden;

    transform:
    translateY(25px)
    scale(.94);

    transition:.4s ease;
}

/* SHOW */
.zv-auth-modal.active .zv-auth-box{
    transform:
    translateY(0)
    scale(1);
}

/* =========================================
   BRILLO
========================================= */

.zv-auth-box::before{
    content:'';

    position:absolute;
    inset:-2px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        rgba(212,175,55,.12),
        transparent,
        rgba(212,175,55,.06)
    );

    z-index:-1;

    filter:blur(10px);
}

/* =========================================
   CLOSE
========================================= */

.zv-close-auth{
    position:absolute;

    top:16px;
    right:16px;

    width:36px;
    height:36px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    color:#d4af37;

    border:
    1px solid rgba(212,175,55,.18);

    background:
    rgba(255,255,255,.03);

    transition:.3s ease;
}

.zv-close-auth:hover{
    transform:rotate(90deg);

    background:
    rgba(212,175,55,.10);

    box-shadow:
    0 0 18px rgba(212,175,55,.22);
}

/* =========================================
   LOGO
========================================= */

.zv-auth-logo{
    display:flex;
    flex-direction:column;
    align-items:center;

    margin-bottom:16px;
}

.zv-auth-logo i{
    font-size:1.8rem;

    color:#ffd54a;

    margin-bottom:8px;

    text-shadow:
    0 0 18px rgba(212,175,55,.30);
}

.zv-auth-logo h2{
    font-size:1.45rem;

    letter-spacing:5px;

    color:#fff;
}

.zv-auth-logo span{
    color:#ffd54a;
}

/* =========================================
   TITULO
========================================= */

.zv-auth-box h1{
    text-align:center;

    font-size:1.5rem;

    margin-bottom:8px;

    color:#fff;
}

.zv-auth-text{
    text-align:center;

    color:rgba(255,255,255,.60);

    line-height:1.5;

    font-size:.90rem;

    margin-bottom:22px;
}

/* =========================================
   INPUTS
========================================= */

.zv-input-box{
    position:relative;

    width:100%;

    margin-bottom:15px;
}

.zv-input-box input{
    width:100%;
    height:54px;

    border:none;
    outline:none;

    border-radius:16px;

    padding:0 52px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.05);

    color:#fff;

    font-size:.92rem;

    transition:.3s ease;
}

.zv-input-box input:focus{
    border:
    1px solid rgba(212,175,55,.28);

    box-shadow:
    0 0 20px rgba(212,175,55,.10);
}

.zv-input-box i{
    position:absolute;

    top:50%;
    transform:translateY(-50%);
}

.zv-input-box i:first-child{
    left:18px;

    color:rgba(255,255,255,.45);
}

.zv-eye{
    right:18px;

    cursor:pointer;

    color:rgba(255,255,255,.40);
}

/* =========================================
   OPTIONS
========================================= */

.zv-auth-options{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:20px;

    gap:10px;

    flex-wrap:wrap;
}

.zv-auth-options label{
    display:flex;
    align-items:center;
    gap:7px;

    color:rgba(255,255,255,.65);

    font-size:.82rem;
}

.zv-auth-options a{
    color:#ffd54a;

    text-decoration:none;

    font-size:.82rem;
}

/* =========================================
   LOGIN BTN
========================================= */

.zv-login-btn{
    width:100%;
    height:54px;

    border:none;
    outline:none;

    border-radius:16px;

    cursor:pointer;

    font-size:.94rem;
    font-weight:700;

    color:#000;

    background:
    linear-gradient(
        135deg,
        #ffd54a,
        #fff2b0,
        #d4a700
    );

    display:flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    transition:.35s ease;

    box-shadow:
    0 0 22px rgba(212,175,55,.18);
}

.zv-login-btn:hover{
    transform:
    translateY(-2px);

    box-shadow:
    0 0 30px rgba(212,175,55,.28);
}

/* =========================================
   DIVIDER
========================================= */

.zv-divider{
    position:relative;

    text-align:center;

    margin:20px 0;
}

.zv-divider::before{
    content:'';

    position:absolute;

    top:50%;
    left:0;

    width:100%;
    height:1px;

    background:
    rgba(255,255,255,.06);
}

.zv-divider span{
    position:relative;

    padding:0 12px;

    background:#090909;

    color:rgba(255,255,255,.38);

    font-size:.78rem;
}

/* =========================================
   SOCIAL
========================================= */

.zv-social-login{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:10px;
}

.zv-social-login button{
    height:48px;

    border:none;
    outline:none;

    border-radius:14px;

    cursor:pointer;

    color:#fff;

    font-size:.82rem;
    font-weight:600;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.05);

    transition:.3s ease;
}

.zv-social-login button:hover{
    transform:
    translateY(-2px);

    border:
    1px solid rgba(212,175,55,.22);

    background:
    rgba(212,175,55,.05);
}

/* =========================================
   REGISTER
========================================= */

.zv-register-text{
    text-align:center;

    margin-top:18px;

    color:rgba(255,255,255,.50);

    font-size:.85rem;
}

.zv-register-text a{
    color:#ffd54a;

    text-decoration:none;

    margin-left:4px;

    font-weight:600;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:600px){

    .zv-auth-box{
        padding:26px 18px;

        border-radius:24px;
    }

    .zv-social-login{
        grid-template-columns:1fr;
    }

    .zv-auth-box h1{
        font-size:1.35rem;
    }

}
/* BOTON CERRAR */
.zv-close-auth{
    position:absolute;

    top:18px;
    right:22px;

    font-size:1.1rem;

    color:rgba(255,255,255,.65);

    cursor:pointer;

    transition:.3s ease;
}

.zv-close-auth:hover{
    color:#ffd54a;

    transform:rotate(90deg);
}











#welcomeScreen {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#welcomeScreen.active {
    display: flex;
}

.welcome-box {
    width: 360px;
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(145deg, #111, #1a1a1a);
    border: 1px solid rgba(255,215,0,0.25);
    box-shadow: 0 0 40px rgba(255,215,0,0.15);
    color: white;
    text-align: center;
}

.welcome-box h1 {
    color: gold;
    font-size: 18px;
    margin-bottom: 10px;
}

.welcome-box p {
    font-size: 13px;
    color: #bbb;
    line-height: 1.5;
}

#continueBtn {
    margin-top: 15px;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: gold;
    font-weight: bold;
    cursor: pointer;
}


/* CONTENIDO | INFORMACION */
/* =========================
   GOOGLE FONT ELEGANTE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================
   SECTION
========================= */
.zv-info-section{
    position: relative;
    width: 100%;
    padding: 140px 8%;
    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 30%),
        radial-gradient(circle at bottom right, rgba(90,90,90,0.06), transparent 35%),
        linear-gradient(135deg, #050505, #0b0b0b, #101010);
}

/* =========================
   EFECTOS DE FONDO
========================= */
.zv-info-section::before{
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    filter: blur(140px);

    top: -250px;
    left: -200px;
}

.zv-info-section::after{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
    filter: blur(120px);

    right: -100px;
    bottom: -150px;
}

/* =========================
   HEADER
========================= */
.zv-section-header{
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* TITULO */
.zv-section-header h2{
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 8px;

    color: #fff;

    display: inline-block;
    position: relative;

    padding-bottom: 28px;

    text-shadow:
        0 0 20px rgba(255,255,255,0.12),
        0 0 60px rgba(255,255,255,0.05);
}

/* LINEA PREMIUM */
.zv-section-header h2::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 200px;
    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffffff,
            #d6d6d6,
            #ffffff,
            transparent
        );

    box-shadow:
        0 0 25px rgba(255,255,255,0.25);
}

/* TEXTO */
.zv-section-header p{
    margin-top: 30px;

    color: rgba(255,255,255,0.6);

    font-size: 1.05rem;
    letter-spacing: 2px;
    font-weight: 300;
}

/* =========================
   WRAPPER
========================= */
.zv-about-wrapper{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* =========================
   SUBTITULO
========================= */
.zv-about-leftside h2{
    font-family: 'Poppins', sans-serif;
    font-size: 3.3rem;
    font-weight: 700;

    color: #fff;

    position: relative;

    margin-bottom: 18px;
}

/* LINEA SUBTITULO */
.zv-about-leftside h2::before{
    content: "";
    position: absolute;

    left: 0;
    bottom: -12px;

    width: 90px;
    height: 3px;

    border-radius: 50px;

    background:
        linear-gradient(
            to right,
            #d4af37,
            transparent
        );
}

/* =========================
   TEXTO DORADO
========================= */
.zv-small-title{
    margin-top: 28px;
    margin-bottom: 35px;

    font-size: 1rem;
    font-weight: 600;

    letter-spacing: 5px;
    text-transform: uppercase;

    background:
        linear-gradient(
            to right,
            #b8860b,
            #f5deb3,
            #caa74a
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 18px rgba(212,175,55,0.18);
}

/* =========================
   TEXTOS
========================= */
.zv-about-leftside p,
.zv-about-rightside p{
    color: rgba(255,255,255,0.72);

    line-height: 2;
    font-size: 1.05rem;
    font-weight: 300;

    margin-bottom: 22px;
}

.zv-about-leftside strong{
    color: #fff;
    font-weight: 700;
}

/* =========================
   IMAGENES
========================= */
.zv-about-leftside img,
.zv-gallery-stack img{
    width: 100%;
    height: auto;

    display: block;

    border-radius: 28px;

    margin-top: 20px;

    border: 1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease,
        filter 0.6s ease;

    filter:
        brightness(0.93)
        contrast(1.05)
        saturate(1.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.75),
        0 0 35px rgba(255,255,255,0.04);
}

/* HOVER VIP */
.zv-about-leftside img:hover,
.zv-gallery-stack img:hover{
    transform:
        translateY(-12px)
        scale(1.03);

    filter:
        brightness(1)
        contrast(1.08)
        saturate(1.15);

    box-shadow:
        0 35px 90px rgba(0,0,0,0.85),
        0 0 60px rgba(255,255,255,0.08),
        0 0 120px rgba(212,175,55,0.08);
}

/* =========================
   GALERIA
========================= */
.zv-gallery-stack{
    display: grid;

    /* IMAGENES 1 Y 2 AL LADO */
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

    align-items: start;
}

/* =========================
   IMAGEN PRINCIPAL
========================= */
.zv-about-leftside img{
    width: 85%; /* MAS COMPACTA */
    height: auto;

    display: block;

    border-radius: 28px;

    margin-top: 25px;

    border: 1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease,
        filter 0.6s ease;

    filter:
        brightness(0.93)
        contrast(1.05)
        saturate(1.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.75),
        0 0 35px rgba(255,255,255,0.04);
}

/* =========================
   IMAGENES 1 Y 2
========================= */
.zv-gallery-stack img{
    width: 100%;
    height: 240px; /* MAS COMPACTAS */

    object-fit: cover;

    display: block;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.08);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease,
        filter 0.6s ease;

    filter:
        brightness(0.93)
        contrast(1.05)
        saturate(1.1);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.75),
        0 0 35px rgba(255,255,255,0.04);
}

/* =========================
   HOVER VIP
========================= */
.zv-about-leftside img:hover,
.zv-gallery-stack img:hover{
    transform:
        translateY(-12px)
        scale(1.03);

    filter:
        brightness(1)
        contrast(1.08)
        saturate(1.15);

    box-shadow:
        0 35px 90px rgba(0,0,0,0.85),
        0 0 60px rgba(255,255,255,0.08),
        0 0 120px rgba(212,175,55,0.08);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 700px){

    .zv-gallery-stack{
        grid-template-columns: 1fr;
    }

    .zv-about-leftside img{
        width: 100%;
    }

    .zv-gallery-stack img{
        height: 220px;
    }
}
/* =========================
   TEXTO DESTACADO
========================= */
.zv-highlight-text{
    font-size: 1.45rem !important;
    font-weight: 700 !important;

    line-height: 1.6;

    background:
        linear-gradient(
            to right,
            #ffffff,
            #dcdcdc,
            #ffffff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 25px rgba(255,255,255,0.08);
}

/* =========================
   REVEAL
========================= */
.zv-reveal-effect{
    opacity: 0;
    transform: translateY(60px);
    animation: zvReveal 1.2s ease forwards;
}

@keyframes zvReveal{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 1100px){

    .zv-about-wrapper{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .zv-section-header h2{
        font-size: 3.8rem;
    }
}

@media(max-width: 700px){

    .zv-info-section{
        padding: 100px 6%;
    }

    .zv-section-header h2{
        font-size: 2.7rem;
        letter-spacing: 4px;
    }

    .zv-about-leftside h2{
        font-size: 2.4rem;
    }

    .zv-about-leftside p,
    .zv-about-rightside p{
        font-size: 0.97rem;
    }

    .zv-highlight-text{
        font-size: 1.1rem !important;
    }
}


/* ==========================================
   ZONE VIP - SERVICIOS PREMIUM
========================================== */

.vip-services-section{
    position: relative;
    width: 100%;
    padding: 120px 5%;
    overflow: hidden;
    background:
    radial-gradient(circle at top left,
    rgba(212,175,55,.08),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(212,175,55,.05),
    transparent 35%),

    #050505;
}

/* ==========================================
   HEADER
========================================== */

.vip-services-header{
    max-width: 900px;
    margin: 0 auto 90px;
    text-align: center;
}

.vip-section-subtitle{
    display: inline-block;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vip-services-title{
    color: #fff;
    font-size: clamp(2.8rem,5vw,4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.vip-services-description{
    max-width: 700px;
    margin: auto;
    color: rgba(255,255,255,.70);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ==========================================
   GRID 2X2 PREMIUM
========================================== */

.vip-services-grid{
    display: grid;
    grid-template-columns: repeat(2,minmax(350px,1fr));
    gap: 35px;
    max-width: 1300px;
    margin: auto;
    align-items: stretch;
}

/* ==========================================
   TARJETAS
========================================== */

.vip-service-card{
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 35px;

    border-radius: 28px;

    background:
    linear-gradient(
    180deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(16px);

    overflow: hidden;

    transition: .45s ease;
}

.vip-service-card::before{
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #d4af37,
    transparent);
}

.vip-service-card:hover{
    transform: translateY(-10px);

    border-color: rgba(212,175,55,.35);

    box-shadow:
    0 25px 60px rgba(0,0,0,.45),
    0 0 35px rgba(212,175,55,.12);
}

/* ==========================================
   TARJETA DESTACADA
========================================== */

.vip-service-featured{
    border: 2px solid rgba(212,175,55,.45);

    background:
    linear-gradient(
    180deg,
    rgba(212,175,55,.08),
    rgba(255,255,255,.02));

    box-shadow:
    0 0 40px rgba(212,175,55,.15),
    0 20px 50px rgba(0,0,0,.45);
}

.vip-service-featured:hover{
    transform: translateY(-10px);
}

/* ==========================================
   TAG
========================================== */

.vip-service-tag{
    align-self: flex-start;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: .8rem;
    font-weight: 700;

    margin-bottom: 22px;
}

.vip-service-tag-gold{
    background: #d4af37;
    color: #000;
}

/* ==========================================
   ICONO
========================================== */

.vip-service-icon{
    width: 85px;
    height: 85px;

    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.18),
    rgba(212,175,55,.05));

    border: 1px solid rgba(212,175,55,.25);
}

.vip-service-icon i{
    color: #d4af37;
    font-size: 2.2rem;
}

/* ==========================================
   TITULO
========================================== */

.vip-service-name{
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.vip-service-text{
    color: rgba(255,255,255,.72);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ==========================================
   PRECIO ULTRA DESTACADO
========================================== */

.vip-service-price-box{
    text-align: center;

    margin: 10px 0 32px;

    padding: 26px;

    border-radius: 22px;

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.18),
    rgba(212,175,55,.04));

    border: 1px solid rgba(212,175,55,.30);
}

.vip-price-label{
    display: block;

    margin-bottom: 12px;

    color: rgba(255,255,255,.55);

    font-size: .8rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.vip-service-price{
    margin: 0;

    color: #d4af37;

    font-size: 5rem;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;

    text-shadow:
    0 0 15px rgba(212,175,55,.45),
    0 0 35px rgba(212,175,55,.30),
    0 0 60px rgba(212,175,55,.15);
}

/* ==========================================
   BENEFICIOS
========================================== */

.vip-service-features{
    list-style: none;
    padding: 0;
    margin: 0;

    flex: 1;
}

.vip-service-features li{
    display: flex;
    align-items: flex-start;
    gap: 12px;

    color: rgba(255,255,255,.88);

    font-size: .95rem;

    line-height: 1.7;

    margin-bottom: 15px;
}

.vip-service-features i{
    color: #d4af37;
    margin-top: 4px;
}

/* ==========================================
   BOTONES
========================================== */

.vip-service-button{
    width: 100%;

    margin-top: 30px;

    border: none;
    cursor: pointer;

    padding: 18px;

    border-radius: 16px;

    color: #fff;

    font-size: 1rem;
    font-weight: 800;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.03));

    transition: .35s ease;
}

.vip-service-button:hover{
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

.vip-service-button-gold{
    background: #d4af37;
    color: #000;
}

.vip-service-button-gold:hover{
    transform: translateY(-3px);
}

/* ==========================================
   TABLETS
========================================== */

@media(max-width:1100px){

    .vip-services-grid{
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .vip-service-price{
        font-size: 4.2rem;
    }

}

/* ==========================================
   MOVILES
========================================== */

@media(max-width:768px){

    .vip-services-section{
        padding: 90px 6%;
    }

    .vip-services-grid{
        grid-template-columns: 1fr;
    }

    .vip-services-title{
        font-size: 2.5rem;
    }

    .vip-service-card{
        padding: 28px;
    }

    .vip-service-price{
        font-size: 3.5rem;
    }

}

/* FILAS DE TARIFAS */

.vip-service-features li{
    display: flex;
    align-items: center;
    gap: 12px;
}

.vip-service-features li span{
    flex: 1;
}

/* PRECIOS IMPACTANTES */

.vip-service-features li strong{
    color: #d4af37;

    font-size: 1.8rem;
    font-weight: 900;

    letter-spacing: -1px;

    text-shadow:
    0 0 10px rgba(212,175,55,.45),
    0 0 20px rgba(212,175,55,.25);

    white-space: nowrap;
}

/* =========================================
   ELITE TEAM SECTION
========================================= */
.elite-team-section{
    position: relative;
    width: 100%;
    padding: 120px 8%;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
        rgba(255,255,255,0.04),
        transparent 30%),
        radial-gradient(circle at bottom right,
        rgba(212,175,55,0.08),
        transparent 35%),
        linear-gradient(
            135deg,
            #050505,
            #0b0b0b,
            #101010
        );
}

/* =========================================
   HEADER
========================================= */
.elite-team-header{
    text-align: center;
    margin-bottom: 80px;
}

.elite-team-tag{
    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.04);

    color: rgba(255,255,255,0.75);

    font-size: .85rem;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* TITLE */
.elite-team-title{
    font-family: 'Cinzel', serif;

    font-size: 5rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 8px;

    color: #fff;

    position: relative;

    display: inline-block;

    padding-bottom: 28px;

    text-shadow:
        0 0 20px rgba(255,255,255,0.12),
        0 0 60px rgba(255,255,255,0.05);
}

/* LINEA PREMIUM */
.elite-team-title::after{
    content: "";
    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 220px;
    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffffff,
            #d4af37,
            #ffffff,
            transparent
        );

    box-shadow:
        0 0 25px rgba(212,175,55,0.25);
}


.elite-team-description{
    max-width: 700px;

    margin: 25px auto 0;

    color: rgba(255,255,255,.65);

    line-height: 1.8;

    font-size: 1rem;
}

/* =========================================
   GRID
========================================= */
.elite-team-grid{
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;
}

/* =========================================
   CARD
========================================= */
.elite-member-card{
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    cursor: pointer;

    background: #111;

    border: 1px solid rgba(255,255,255,.06);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.elite-member-card:hover{
    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.65);
}

/* =========================================
   IMAGE
========================================= */
.elite-member-image{
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.elite-member-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease,
        filter .7s ease;
}

/* DIFUMINAR IMAGEN */
.elite-member-card:hover .elite-member-image img{
    transform: scale(1.08);

    filter:
        blur(8px)
        brightness(.35);
}

/* =========================================
   OVERLAY
========================================= */
.elite-member-overlay{
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 35px;

    background:
        rgba(0,0,0,.55);

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .5s ease,
        transform .5s ease;
}

/* MOSTRAR INFO SOLO EN HOVER */
.elite-member-card:hover .elite-member-overlay{
    opacity: 1;

    transform: translateY(0);
}

/* =========================================
   TEXTOS
========================================= */
.elite-member-role{
    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 20px;

    border-radius: 50px;

    background:
        rgba(212,175,55,.15);

    border: 1px solid rgba(212,175,55,.3);

    color: #d4af37;

    font-size: .8rem;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.elite-member-name{
    color: #fff;

    font-size: 2rem;

    margin-bottom: 15px;
}

.elite-member-text{
    color: rgba(255,255,255,.8);

    line-height: 1.8;

    margin-bottom: 30px;
}

/* =========================================
   STATS
========================================= */
.elite-member-stats{
    display: flex;

    gap: 25px;

    justify-content: center;

    flex-wrap: wrap;
}

.elite-stat-item{
    min-width: 90px;

    padding: 15px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.06);

    border: 1px solid rgba(255,255,255,.08);
}

.elite-stat-item strong{
    display: block;

    color: #fff;

    font-size: 1.3rem;

    margin-bottom: 5px;
}

.elite-stat-item span{
    color: rgba(255,255,255,.65);

    font-size: .85rem;
}

/* =========================================
   RESPONSIVE
========================================= */
@media(max-width:1200px){

    .elite-team-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .elite-team-grid{
        grid-template-columns: 1fr;
    }

    .elite-team-title{
        font-size: 2.7rem;
    }

    .elite-member-card{
        height: 450px;
    }
}

@media(max-width:500px){

    .elite-team-section{
        padding: 90px 6%;
    }

    .elite-team-title{
        font-size: 2rem;
    }

    .elite-member-name{
        font-size: 1.6rem;
    }

    .elite-member-text{
        font-size: .95rem;
    }
}



/* =========================
   TESTIMONIALS VIP SECTION
========================= */
.vip-testimonials-section{
    position: relative;
    width: 100%;

    padding: 140px 8%;

    overflow: hidden;

    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 30%),
        radial-gradient(circle at bottom left, rgba(212,175,55,0.05), transparent 35%),
        linear-gradient(135deg, #050505, #0b0b0b, #101010);
}

/* =========================
   BACKGROUND EFFECTS
========================= */
.vip-testimonials-section::before{
    content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(255,255,255,0.03);

    filter: blur(140px);

    top: -250px;
    left: -180px;
}

.vip-testimonials-section::after{
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(212,175,55,0.05);

    filter: blur(140px);

    bottom: -200px;
    right: -120px;
}

/* =========================
   HEADER
========================= */
.vip-testimonials-header{
    text-align: center;

    position: relative;
    z-index: 2;

    margin-bottom: 90px;
}

/* SUBTITLE */
.vip-testimonials-subtitle{
    display: inline-block;

    padding: 10px 22px;

    margin-bottom: 22px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,0.08);

    background: rgba(255,255,255,0.03);

    backdrop-filter: blur(12px);

    color: rgba(255,255,255,0.75);

    font-size: 0.9rem;
    font-weight: 500;

    letter-spacing: 3px;

    text-transform: uppercase;
}

/* TITLE */
.vip-testimonials-title{
    font-family: 'Cinzel', serif;

    font-size: 5rem;

    font-weight: 800;

    color: #fff;

    text-transform: uppercase;

    letter-spacing: 8px;

    position: relative;

    display: inline-block;

    padding-bottom: 28px;

    text-shadow:
        0 0 20px rgba(255,255,255,0.12),
        0 0 60px rgba(255,255,255,0.05);
}

/* LINE */
.vip-testimonials-title::after{
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 220px;
    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffffff,
            #d4af37,
            #ffffff,
            transparent
        );

    box-shadow:
        0 0 25px rgba(212,175,55,0.25);
}

/* DESCRIPTION */
.vip-testimonials-description{
    max-width: 850px;

    margin: 35px auto 0;

    color: rgba(255,255,255,0.65);

    line-height: 2;

    font-size: 1.05rem;

    letter-spacing: 1px;
}

/* =========================
   GRID
========================= */
.vip-testimonials-grid{
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;
}

/* =========================
   CARD
========================= */
.vip-testimonial-card{
    position: relative;

    padding: 40px 35px;

    border-radius: 35px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.03)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);

    transition:
        transform 0.6s ease,
        box-shadow 0.6s ease,
        border 0.6s ease;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.7),
        0 0 35px rgba(255,255,255,0.03);
}

/* HOVER */
.vip-testimonial-card:hover{
    transform: translateY(-15px) scale(1.02);

    border: 1px solid rgba(212,175,55,0.25);

    box-shadow:
        0 35px 90px rgba(0,0,0,0.85),
        0 0 70px rgba(212,175,55,0.08);
}

/* =========================
   TOP
========================= */
.vip-testimonial-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 25px;
}

/* PROFILE */
.vip-testimonial-profile{
    display: flex;
    align-items: center;

    gap: 15px;
}

/* AVATAR */
.vip-testimonial-avatar{
    width: 60px;
    height: 60px;

    border-radius: 50%;

    overflow: hidden;

    border: 1px solid rgba(212,175,55,0.25);

    box-shadow: 0 0 25px rgba(212,175,55,0.08);
}

.vip-testimonial-avatar img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* USER */
.vip-testimonial-user h3{
    font-size: 1.1rem;

    color: #fff;

    margin-bottom: 4px;
}

.vip-testimonial-user span{
    font-size: 0.85rem;

    color: rgba(255,255,255,0.6);
}

/* STARS */
.vip-testimonial-stars i{
    color: #d4af37;

    font-size: 0.9rem;

    margin-left: 2px;

    text-shadow: 0 0 10px rgba(212,175,55,0.2);
}

/* =========================
   TEXT
========================= */
.vip-testimonial-text{
    color: rgba(255,255,255,0.75);

    line-height: 2;

    font-size: 1rem;

    font-style: italic;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 1200px){

    .vip-testimonials-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 800px){

    .vip-testimonials-grid{
        grid-template-columns: 1fr;
    }

    .vip-testimonials-title{
        font-size: 3.5rem;
    }
}

@media(max-width: 700px){

    .vip-testimonials-section{
        padding: 100px 6%;
    }

    .vip-testimonials-title{
        font-size: 2.5rem;

        letter-spacing: 4px;
    }

    .vip-testimonials-description{
        font-size: 0.95rem;
    }

    .vip-testimonial-card{
        padding: 30px 25px;
    }

    .vip-testimonial-top{
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================
   RESERVAS VIP (VERSION PRO)
========================= */
.vip-reservations-section{
    position: relative;
    width: 100%;
    padding: 140px 8%;
    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 30%),
        radial-gradient(circle at bottom right, rgba(212,175,55,0.05), transparent 35%),
        linear-gradient(135deg, #050505, #0b0b0b, #101010);
}

/* BACK FX */
.vip-reservations-section::before,
.vip-reservations-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter: blur(140px);
}

.vip-reservations-section::before{
    width: 650px;
    height: 650px;
    background: rgba(255,255,255,0.03);
    top:-260px;
    right:-180px;
}

.vip-reservations-section::after{
    width: 500px;
    height: 500px;
    background: rgba(212,175,55,0.05);
    bottom:-220px;
    left:-150px;
}

/* =========================
   HEADER
========================= */
.vip-reservations-header{
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 90px;
}

.vip-reservations-subtitle{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;

    border:1px solid rgba(255,255,255,0.08);
    background:rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);

    color:rgba(255,255,255,0.75);
    font-size:0.9rem;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.vip-reservations-title{
    font-family:'Cinzel', serif;
    font-size:5rem;
    font-weight:800;
    color:#fff;
    letter-spacing:8px;
    text-transform:uppercase;

    display:inline-block;
    position:relative;
    padding-bottom:28px;

    text-shadow:0 0 20px rgba(255,255,255,0.12);
}

.vip-reservations-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:220px;
    height:4px;
    border-radius:50px;

    background:linear-gradient(90deg, transparent, #fff, #d4af37, #fff, transparent);
}

.vip-reservations-description{
    max-width:850px;
    margin:35px auto 0;
    color:rgba(255,255,255,0.65);
    line-height:2;
    font-size:1.05rem;
}

/* =========================
   FORM
========================= */
.vip-reservations-form{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin:auto;

    display:flex;
    flex-direction:column;
    gap:45px;
}

/* =========================
   BLOCKS
========================= */
.vip-reservation-block{
    padding:35px;
    border-radius:30px;

    border:1px solid rgba(255,255,255,0.08);
    background:linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));

    backdrop-filter: blur(18px);
    box-shadow:0 25px 60px rgba(0,0,0,0.7);
}

.vip-reservation-block-title{
    font-size:1.5rem;
    color:#fff;
    margin-bottom:25px;
    letter-spacing:2px;
    position:relative;
}

.vip-reservation-block-title::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:90px;
    height:3px;
    border-radius:50px;
    background:linear-gradient(to right, #d4af37, transparent);
}

/* =========================
   INPUT GRID (MEJORADO)
========================= */
.vip-reservation-inputs{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:18px;
}

/* FULL WIDTH ELEMENTS */
.vip-reservation-inputs input,
.vip-reservation-inputs select,
.vip-reservation-inputs textarea{
    width:100%;
    padding:16px 18px;

    border-radius:16px;
    border:1px solid rgba(255,255,255,0.08);

    background:rgba(0,0,0,0.35);
    color:#fff;

    outline:none;
    font-size:1rem;

    transition:0.4s ease;
}

/* textarea full width */
.vip-reservation-inputs textarea{
    grid-column:1 / -1;
    min-height:120px;
    resize:none;
}

/* focus */
.vip-reservation-inputs input:focus,
.vip-reservation-inputs select:focus,
.vip-reservation-inputs textarea:focus{
    border:1px solid rgba(212,175,55,0.35);
    box-shadow:0 0 25px rgba(212,175,55,0.12);
}

/* =========================
   COST / READONLY LOOK
========================= */
.vip-reservation-inputs input[readonly]{
    opacity:0.75;
    cursor:not-allowed;
    border:1px solid rgba(212,175,55,0.15);
}

/* =========================
   RATING
========================= */
.vip-reservation-rating{
    text-align:center;
}

.vip-reservation-rating-title{
    color:#fff;
    font-size:1.4rem;
    margin-bottom:20px;
}

.vip-reservation-stars{
    display:flex;
    justify-content:center;
    flex-direction:row-reverse;
    gap:8px;
}

.vip-reservation-stars input{
    display:none;
}

.vip-reservation-stars label{
    font-size:2.2rem;
    color:rgba(255,255,255,0.25);
    cursor:pointer;
    transition:0.3s ease;
}

.vip-reservation-stars input:checked ~ label,
.vip-reservation-stars label:hover,
.vip-reservation-stars label:hover ~ label{
    color:#d4af37;
    text-shadow:0 0 20px rgba(212,175,55,0.25);
}

/* =========================
   WHATSAPP BUTTON
========================= */
.vip-reservation-action{
    text-align:center;
}

.vip-whatsapp-button{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 45px;
    border-radius:18px;

    text-decoration:none;

    font-size:1.15rem;
    font-weight:800;

    color:#fff;

    background:linear-gradient(135deg, #25D366, #128C7E);

    box-shadow:0 25px 60px rgba(37,211,102,0.25);

    transition:0.4s ease;
}

.vip-whatsapp-button:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 80px rgba(37,211,102,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width: 900px){
    .vip-reservation-inputs{
        grid-template-columns:1fr;
    }
}

@media(max-width: 700px){
    .vip-reservations-section{
        padding:100px 6%;
    }

    .vip-reservations-title{
        font-size:2.6rem;
        letter-spacing:4px;
    }

    .vip-reservations-description{
        font-size:0.95rem;
    }

    .vip-reservation-block{
        padding:25px;
    }

    .vip-reservation-stars label{
        font-size:1.8rem;
    }
}


/* CONTACTO */
.vip-contacto{
  width: 100%;
  padding: 120px 10%;
  background: radial-gradient(circle at top, #111 0%, #000 100%);
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.vip-contacto__contenedor{
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

/* INFO */
.vip-contacto__info{
  flex: 1;
}

.vip-contacto__info h2{
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.vip-contacto__info p{
  color: #bdbdbd;
  max-width: 420px;
  line-height: 1.6;
}

/* DATOS */
.vip-contacto__datos{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vip-contacto__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.vip-contacto__item:hover{
  transform: translateX(5px);
  background: rgba(255,255,255,0.08);
}

/* FORM */
.vip-contacto__form{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 35px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
}

/* INPUTS */
.vip-contacto__grupo{
  position: relative;
}

.vip-contacto__grupo input,
.vip-contacto__grupo textarea{
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  outline: none;
  font-size: 15px;
}

.vip-contacto__grupo textarea{
  resize: none;
  height: 100px;
}

.vip-contacto__grupo label{
  position: absolute;
  left: 0;
  top: 12px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s;
}

/* ANIMACIÓN LABEL */
.vip-contacto__grupo input:focus + label,
.vip-contacto__grupo input:valid + label,
.vip-contacto__grupo textarea:focus + label,
.vip-contacto__grupo textarea:valid + label{
  top: -12px;
  font-size: 12px;
  color: #d4af37;
}

/* BOTÓN */
.vip-contacto__form button{
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.vip-contacto__form button:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .vip-contacto__contenedor{
    flex-direction: column;
  }

  .vip-contacto__info{
    text-align: center;
  }

  .vip-contacto__info p{
    margin: 0 auto;
  }
}



/* =========================
   VIP TOAST NOTIFICATION
========================= */

.vip-toast{

  position: fixed;
  top: 30px;
  right: 30px;

  width: 380px;
  max-width: calc(100% - 30px);

  z-index: 999999;

  opacity: 0;
  visibility: hidden;

  transform:
  translateY(-30px)
  scale(.9);

  transition:
  all .45s ease;

}

/* ACTIVE */
.vip-toast.show{

  opacity: 1;
  visibility: visible;

  transform:
  translateY(0)
  scale(1);

}

/* BLUR */
.vip-toast__blur{

  position: absolute;
  inset: 0;

  border-radius: 26px;

  backdrop-filter: blur(22px);

  background:
  rgba(10,10,10,.55);

  border:
  1px solid rgba(212,175,55,.18);

  box-shadow:
  0 15px 50px rgba(0,0,0,.45);

}

/* CONTENT */
.vip-toast__content{

  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px;

  border-radius: 26px;

  overflow: hidden;

}

/* GOLD LINE */
.vip-toast__content::before{

  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 5px;
  height: 100%;

  background:
  linear-gradient(
    180deg,
    #d4af37,
    #f8e18b,
    #d4af37
  );

  box-shadow:
  0 0 20px rgba(212,175,55,.5);

}

/* ICON */
.vip-toast__icon{

  min-width: 68px;
  height: 68px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  background:
  linear-gradient(
    135deg,
    #d4af37,
    #f8e18b
  );

  color: #111;

  box-shadow:
  0 10px 30px rgba(212,175,55,.35);

  animation:
  vipPulse 2s infinite;

}

/* TEXT */
.vip-toast__text{

  flex: 1;

}

.vip-toast__text h3{

  margin: 0;

  color: #d4af37;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;

}

.vip-toast__text p{

  margin-top: 7px;

  color: #f2f2f2;

  font-size: 14px;
  line-height: 1.6;

}

/* CLOSE */
.vip-toast__close{

  width: 38px;
  height: 38px;

  border: none;
  outline: none;

  border-radius: 50%;

  cursor: pointer;

  font-size: 15px;
  font-weight: bold;

  color: #ffffff;

  background:
  rgba(255,255,255,.08);

  transition:
  all .3s ease;

}

.vip-toast__close:hover{

  transform: rotate(90deg);

  background:
  rgba(212,175,55,.15);

  color: #d4af37;

}

/* ANIMATION */
@keyframes vipPulse{

  0%{

    transform: scale(1);

  }

  50%{

    transform: scale(1.08);

  }

  100%{

    transform: scale(1);

  }

}

/* =========================
   MOBILE VIP
========================= */

@media(max-width:768px){

  .vip-toast{

    top: 15px;
    right: 15px;
    left: 15px;

    width: auto;
    max-width: none;

  }

  .vip-toast__content{

    padding: 18px;
    gap: 14px;

  }

  .vip-toast__icon{

    min-width: 58px;
    height: 58px;

    font-size: 25px;

  }

  .vip-toast__text h3{

    font-size: 16px;

  }

  .vip-toast__text p{

    font-size: 13px;

  }

  .vip-toast__close{

    width: 34px;
    height: 34px;

    font-size: 13px;

  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .vip-toast{

    top: 10px;
    left: 10px;
    right: 10px;

  }

  .vip-toast__content{

    padding: 15px;

  }

  .vip-toast__icon{

    min-width: 50px;
    height: 50px;

    font-size: 22px;

  }

  .vip-toast__text h3{

    font-size: 14px;

  }

  .vip-toast__text p{

    font-size: 12px;
    line-height: 1.5;

  }

}




/* =========================
   FOOTER VIP PREMIUM
========================= */

.vip-footer{

  position: relative;

  background:
  linear-gradient(
    180deg,
    #080808,
    #111111
  );

  padding:
  90px 8%
  35px;

  overflow: hidden;

  border-top:
  1px solid rgba(212,175,55,.12);

}

/* GLOW */
.vip-footer::before{

  content: "";

  position: absolute;

  top: -200px;
  left: -200px;

  width: 450px;
  height: 450px;

  background:
  radial-gradient(
    circle,
    rgba(212,175,55,.12),
    transparent 70%
  );

  pointer-events: none;

}

.vip-footer::after{

  content: "";

  position: absolute;

  bottom: -200px;
  right: -200px;

  width: 450px;
  height: 450px;

  background:
  radial-gradient(
    circle,
    rgba(212,175,55,.08),
    transparent 70%
  );

  pointer-events: none;

}

/* TOP */
.vip-footer__top{

  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns:
  1.4fr
  1fr
  1fr
  1.2fr;

  gap: 50px;

}

/* BRAND */
.vip-footer__brand h2{

  color: #ffffff;

  font-size: 38px;
  font-weight: 800;

  letter-spacing: 3px;

  margin-bottom: 18px;

}

.vip-footer__brand h2 span{

  color: #d4af37;

  text-shadow:
  0 0 18px rgba(212,175,55,.45);

}

.vip-footer__brand p{

  color: #9f9f9f;

  line-height: 1.9;

  font-size: 15px;

  max-width: 380px;

}

/* SOCIALS */
.vip-footer__socials{

  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 30px;

}

.vip-footer__socials a{

  width: 52px;
  height: 52px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: #d4af37;

  font-size: 18px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(212,175,55,.12);

  transition:
  all .35s ease;

  backdrop-filter: blur(10px);

}

.vip-footer__socials a:hover{

  transform:
  translateY(-6px)
  scale(1.05);

  background:
  linear-gradient(
    135deg,
    #d4af37,
    #f8e18b
  );

  color: #111111;

  box-shadow:
  0 12px 30px rgba(212,175,55,.28);

}

/* TITLES */
.vip-footer__links h3,
.vip-footer__contact h3{

  color: #ffffff;

  font-size: 20px;
  font-weight: 700;

  margin-bottom: 25px;

  position: relative;

}

.vip-footer__links h3::after,
.vip-footer__contact h3::after{

  content: "";

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 45px;
  height: 2px;

  border-radius: 50px;

  background:
  linear-gradient(
    90deg,
    #d4af37,
    transparent
  );

}

/* LIST */
.vip-footer__links ul{

  list-style: none;

  padding: 0;
  margin: 0;

}

.vip-footer__links ul li{

  margin-bottom: 15px;

}

.vip-footer__links ul li a{

  text-decoration: none;

  color: #a5a5a5;

  font-size: 15px;

  transition:
  all .3s ease;

  position: relative;

}

.vip-footer__links ul li a::before{

  content: "✦";

  color: #d4af37;

  margin-right: 8px;

  opacity: 0;

  transition:
  all .3s ease;

}

.vip-footer__links ul li a:hover{

  color: #ffffff;

  padding-left: 5px;

}

.vip-footer__links ul li a:hover::before{

  opacity: 1;

}

/* CONTACT */
.vip-footer__item{

  display: flex;
  align-items: flex-start;
  gap: 14px;

  margin-bottom: 22px;

}

.vip-footer__item i{

  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #d4af37;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(212,175,55,.12);

}

.vip-footer__item p{

  color: #a8a8a8;

  line-height: 1.7;

  font-size: 15px;

}

/* DIVIDER */
.vip-footer__divider{

  width: 100%;
  height: 1px;

  margin:
  55px 0
  28px;

  background:
  linear-gradient(
    90deg,
    transparent,
    rgba(212,175,55,.25),
    transparent
  );

}

/* BOTTOM */
.vip-footer__bottom{

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  flex-wrap: wrap;

}

.vip-footer__bottom p{

  color: #7d7d7d;

  font-size: 14px;

}

.vip-footer__bottom span{

  color: #d4af37;

  font-weight: 600;

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

  .vip-footer__top{

    grid-template-columns:
    1fr 1fr;

    gap: 45px;

  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .vip-footer{

    padding:
    70px 25px
    30px;

  }

  .vip-footer__top{

    grid-template-columns:
    1fr;

    gap: 40px;

  }

  .vip-footer__brand h2{

    font-size: 30px;

  }

  .vip-footer__brand p{

    max-width: 100%;

  }

  .vip-footer__bottom{

    flex-direction: column;
    align-items: flex-start;

    gap: 12px;

  }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

  .vip-footer{

    padding:
    60px 18px
    25px;

  }

  .vip-footer__brand h2{

    font-size: 26px;

  }

  .vip-footer__socials{

    gap: 12px;

  }

  .vip-footer__socials a{

    width: 46px;
    height: 46px;

    font-size: 16px;

  }

  .vip-footer__links h3,
  .vip-footer__contact h3{

    font-size: 18px;

  }

  .vip-footer__bottom p{

    font-size: 13px;

  }

}




#luxury-loader{
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 50% 40%, #111 0%, #000 60%, #000 100%);
    z-index:999999;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/* ✨ Fondo MUY premium (profundidad real) */
#luxury-loader::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.06), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(212,175,55,0.05), transparent 50%),
        radial-gradient(circle at center, rgba(255,255,255,0.02), transparent 60%);
    filter: blur(60px);
    opacity:0.8;
    animation:luxAmbient 8s ease-in-out infinite alternate;
}

/* LOGO */
.loader-logo{
    font-family:'Poppins', sans-serif;
    font-size:4.2rem;
    font-weight:700;
    letter-spacing:14px;
    color:#fff;
    position:relative;
    opacity:0;
    transform:translateY(12px);
    animation:logoIn 1.6s ease forwards;
}

/* VIP dorado REALISTA (sin amarillo falso) */
.loader-logo .vip{
    color: transparent;
    background: linear-gradient(
        135deg,
        #fdf6d8 0%,
        #d4af37 35%,
        #b8860b 65%,
        #f7e7b0 100%
    );
    -webkit-background-clip:text;
    background-clip:text;
    position:relative;
    text-shadow:0 0 18px rgba(212,175,55,0.08);
}

/* ✨ BRILLO CORREGIDO (MUY SUAVE / REALISTA) */
.loader-logo .vip::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255,255,255,0.10) 45%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.10) 55%,
        transparent 100%
    );
    transform: translateX(-140%);
    opacity:0;
    animation:luxShine 7s ease-in-out infinite;
}

/* LINEA ULTRA MINIMALISTA */
.gold-line{
    width:140px;
    height:1px;
    margin-top:28px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,0.9),
        transparent
    );
    opacity:0;
    animation:lineIn 2s ease forwards;
}

/* TEXTO */
#luxury-loader p{
    margin-top:18px;
    color:rgba(255,255,255,0.45);
    letter-spacing:5px;
    font-size:0.72rem;
    text-transform:uppercase;
    opacity:0;
    animation:textIn 2.2s ease forwards;
    animation-delay:0.8s;
}

/* =========================
   ANIMACIONES (LUXURY STYLE)
========================= */

@keyframes logoIn{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ✨ brillo MUY lento y elegante */
@keyframes luxShine{
    0%{
        transform: translateX(-140%);
        opacity:0;
    }
    25%{
        opacity:0;
    }
    50%{
        opacity:0.35;
    }
    75%{
        opacity:0;
    }
    100%{
        transform: translateX(140%);
        opacity:0;
    }
}

/* línea elegante */
@keyframes lineIn{
    from{
        opacity:0;
        transform:scaleX(0.4);
    }
    to{
        opacity:1;
        transform:scaleX(1);
    }
}

/* texto suave */
@keyframes textIn{
    to{
        opacity:1;
    }
}

/* fondo vivo pero MUY sutil */
@keyframes luxAmbient{
    from{
        transform:scale(1);
        opacity:0.6;
    }
    to{
        transform:scale(1.06);
        opacity:0.85;
    }
}

/* LOGO PANTALLA DE CARGA */ 
.loader-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.loader-image img {
    width: 90px;       /* Tamaño tipo carnet */
    height: 90px;
    object-fit: contain;
    border-radius: 12px; /* Opcional: bordes suaves */
}