/* ========================================= */
/* VARIABLES */
/* ========================================= */

:root{

    --azul:#050b1d;
    --azul2:#091631;

    --naranja:#ff8c00;
    --naranja2:#ff6600;

    --blanco:#ffffff;

    --gris:#d9d9d9;

}

/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:
    linear-gradient(
    180deg,
    #030812,
    #071225,
    #091631
    );

    color:white;

    overflow-x:hidden;

}

/* ========================================= */
/* PARTICULAS */
/* ========================================= */

#particles{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    overflow:hidden;

    pointer-events:none;

    z-index:1;

}

/* ========================================= */
/* CONTENEDOR */
/* ========================================= */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

/* ========================================= */
/* HEADER */
/* ========================================= */

.premium-header{

    position:fixed;

    top:0;

    width:100%;

    z-index:999;

    backdrop-filter:blur(12px);

    background:
    rgba(0,0,0,.35);

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

.premium-header .container{

    display:flex;

    justify-content:space-between;
    align-items:center;

    padding:20px 0;

}

.logo{

    text-decoration:none;

    font-size:32px;
    font-weight:900;

    color:white;

}

.logo span{

    color:var(--naranja);

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    color:var(--naranja);

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero-premium{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

}

.hero-premium img{

    width:100%;

    min-height:100vh;

    object-fit:cover;

    /*display:block;*/

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.75)
    );

    display:flex;

    align-items:center;

    z-index:3;

}

.hero-content{

    width:90%;
    max-width:1200px;

    margin:auto;

}

.premium-badge{

    display:inline-block;

    background:var(--naranja);

    padding:10px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:64px;

    font-weight:900;

    margin-bottom:20px;

    text-shadow:
    0 0 20px rgba(255,140,0,.4);

}

.hero-content p{

    max-width:650px;

    font-size:24px;

    line-height:1.6;

}

/* ========================================= */
/* BOTON */
/* ========================================= */

.btn-premium{

    display:inline-block;

    margin-top:30px;

    padding:18px 35px;

    text-decoration:none;

    color:white;

    font-weight:800;

    border-radius:12px;

    background:
    linear-gradient(
    135deg,
    #ff8c00,
    #ff6600
    );

    box-shadow:
    0 0 20px rgba(255,140,0,.35);

    transition:.3s;

}

.btn-premium:hover{

    transform:
    translateY(-4px)
    scale(1.03);

}

/* ========================================= */
/* STATS */
/* ========================================= */

.stats{

    padding:100px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:40px;

    border-radius:20px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.08);

}

.stat-card h2{

    font-size:60px;

    color:var(--naranja);

}

/* ========================================= */
/* BENEFICIOS */
/* ========================================= */

.benefits{

    padding:120px 0;

}

.benefits h2{

    text-align:center;

    font-size:50px;

    margin-bottom:60px;

}

.benefits-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

}

.benefit-card{

    text-align:center;

    padding:35px;

    border-radius:20px;

    background:
    rgba(255,255,255,.04);

    transition:.4s;

}

.benefit-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 0 25px rgba(255,140,0,.25);

}

.benefit-card i{

    font-size:45px;

    color:var(--naranja);

    margin-bottom:20px;

}

/* ========================================= */
/* COMPARATIVA */
/* ========================================= */

.comparison{

    padding:120px 0;

}

.comparison h2{

    text-align:center;

    font-size:50px;

    margin-bottom:60px;

}

.comparison table{

    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:20px;

}

.comparison th{

    background:var(--naranja);

    color:white;

}

.comparison th,
.comparison td{

    padding:20px;

    text-align:center;

}

.comparison tr:nth-child(even){

    background:
    rgba(255,255,255,.05);

}

/* ========================================= */
/* PLAN PREMIUM */
/* ========================================= */

.premium-plan{

    padding:120px 0;

}

.premium-card{

    position:relative;

    text-align:center;

    padding:70px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    rgba(255,140,0,.15),
    rgba(255,255,255,.04)
    );

    border:
    2px solid rgba(255,140,0,.35);

    box-shadow:
    0 0 35px rgba(255,140,0,.15);

}

.premium-tag{

    position:absolute;

    top:-18px;
    right:40px;

    background:var(--naranja);

    padding:12px 25px;

    border-radius:30px;

    font-weight:800;

}

.premium-card h2{

    font-size:60px;

    margin-bottom:30px;

}

.premium-card ul{

    list-style:none;

    margin-bottom:40px;

}

.premium-card li{

    padding:10px;

    font-size:20px;

}

.premium-price{

    font-size:70px;

    font-weight:900;

    color:var(--naranja);

    margin-bottom:30px;

}

/* ========================================= */
/* CTA FINAL */
/* ========================================= */

.final-cta{

    text-align:center;

    padding:120px 0;

}

.final-cta h2{

    font-size:60px;

    margin-bottom:20px;

}

.final-cta p{

    font-size:22px;

    max-width:700px;

    margin:auto;

}

/* ========================================= */
/* ANIMACIONES */
/* ========================================= */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

.premium-card{

    animation:
    float 5s ease-in-out infinite;

}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:992px){

    .benefits-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    nav{

        display:none;

    }

    .hero-content h1{

        font-size:48px;

    }

    .hero-content p{

        font-size:18px;

    }

    .benefits-grid{

        grid-template-columns:1fr;

    }

    .premium-card h2{

        font-size:38px;

    }

    .premium-price{

        font-size:50px;

    }

}
/* ========================================= */
/* GLOW PREMIUM */
/* ========================================= */

.hero-content{

    position:relative;

    z-index:5;

}

.premium-badge{

    box-shadow:
    0 0 20px rgba(255,140,0,.5);

}

.btn-premium{

    position:relative;

    overflow:hidden;

}

.btn-premium::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:

    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
    );

    transition:.8s;

}

.btn-premium:hover::before{

    left:100%;

}