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

body{
    background:#020617;
    font-family:'Rajdhani', sans-serif;
    color:#fff;
    overflow-x:hidden;
	 padding-top:90px;
}

/* Fondo */

body::before{
    content:'';
    position:fixed;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at left, rgba(255,0,0,.15), transparent 30%),
    radial-gradient(circle at right, rgba(0,102,255,.18), transparent 30%);
    z-index:-1;
}

/* Header */

/* header{
    width:100%;
    padding:20px 8%;
    border-bottom:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#050b18;
} */
header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(5,11,24,.92);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:9999;

    transition:.3s;
}
.logo{
    font-family:'Orbitron', sans-serif;
    font-size:34px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:#0d6efd;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:#d8d8d8;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

nav a:hover{
    color:#ff2a2a;
}

.btn-contacto{
    background:linear-gradient(45deg,#ff1e1e,#0d6efd);
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.btn-contacto:hover{
    transform:scale(1.05);
}

/* Hero */

.hero{
    text-align:center;
    padding:90px 20px 60px;
}

.hero h1{
    font-family:'Orbitron', sans-serif;
    font-size:60px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero h1 span{
    color:#ff2a2a;
}

.hero p{
    font-size:24px;
    color:#bcbcbc;
}

/* Cards */

.planes{
    width:100%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    padding:50px 40px 100px;
}

.card{
    background:#060d1d;
    border:2px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    border-color:#0d6efd;
    box-shadow:0 0 25px rgba(13,110,253,.4);
}

.card.popular{
    border:2px solid #0d6efd;
    box-shadow:0 0 30px rgba(13,110,253,.25);
}

.badge{
    position:absolute;
    top:20px;
    right:-40px;
    background:#0d6efd;
    padding:10px 60px;
    transform:rotate(45deg);
    font-size:14px;
    font-weight:bold;
}

.card h2{
    font-family:'Orbitron', sans-serif;
    font-size:28px;
    margin-bottom:30px;
    color:#fff;
}

.precio{
    font-size:75px;
    font-weight:700;
    margin-bottom:25px;
}

.precio span{
    font-size:30px;
    color:#ff2a2a;
}

.precio small{
    font-size:22px;
    color:#999;
}

.features{
    list-style:none;
    margin-top:20px;
}

.features li{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.07);
    color:#d8d8d8;
    font-size:20px;
}

.features li::before{
    content:'✔';
    color:#0d6efd;
    margin-right:10px;
}

.btn-plan{
    width:100%;
    margin-top:35px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(45deg,#ff1e1e,#0d6efd);
    color:#fff;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.btn-plan:hover{
    transform:scale(1.03);
}

/* Footer Features */

.info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
    padding:0 30px 80px;
}

.box-info{
    background:#081122;
    border-radius:20px;
    padding:25px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}

.box-info h3{
    margin-top:15px;
    font-size:24px;
}

.box-info p{
    color:#bcbcbc;
    margin-top:8px;
}

/* Responsive */

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

    .precio{
        font-size:58px;
    }

}
/* =========================
   BLOQUE ASESORÍA
========================= */

.asesoria{
    max-width:1200px;
    margin:0 auto 120px;
    padding:80px 40px;
    text-align:center;
    background:linear-gradient(
        145deg,
        rgba(8,17,34,.95),
        rgba(3,7,18,.98)
    );
    border-radius:35px;
    border:1px solid rgba(13,110,253,.35);
    box-shadow:
    0 0 30px rgba(13,110,253,.12),
    inset 0 0 40px rgba(255,0,0,.03);
    position:relative;
    overflow:hidden;
}

/* brillo fondo */

.asesoria::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(
        circle,
        rgba(13,110,253,.18),
        transparent 70%
    );
    top:-120px;
    right:-120px;
}

.asesoria::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(
        circle,
        rgba(255,0,0,.12),
        transparent 70%
    );
    bottom:-120px;
    left:-120px;
}

.asesoria h2{
    font-family:'Orbitron', sans-serif;
    font-size:58px;
    margin-bottom:30px;
    line-height:1.3;
    position:relative;
    z-index:2;
}

.asesoria h2 span{
    color:#0d6efd;
    text-shadow:
    0 0 10px rgba(13,110,253,.7),
    0 0 25px rgba(13,110,253,.5);
}

.asesoria p{
    max-width:850px;
    margin:auto;
    font-size:24px;
    color:#d4d4d4;
    line-height:1.8;
    position:relative;
    z-index:2;
}

/* BOTÓN */

.btn-asesoria{
    display:inline-block;
    margin-top:45px;
    padding:20px 50px;
    border-radius:60px;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    font-size:20px;
    letter-spacing:1px;

    background:linear-gradient(
        45deg,
        #ff1e1e,
        #0d6efd
    );

    box-shadow:
    0 0 15px rgba(13,110,253,.45),
    0 0 25px rgba(255,30,30,.25);

    transition:.35s;
    position:relative;
    z-index:2;
}

.btn-asesoria:hover{
    transform:translateY(-5px) scale(1.03);

    box-shadow:
    0 0 25px rgba(13,110,253,.65),
    0 0 40px rgba(255,30,30,.35);
}

/* RESPONSIVE */

@media(max-width:768px){

    .asesoria{
        padding:60px 25px;
        border-radius:25px;
    }

    .asesoria h2{
        font-size:34px;
    }

    .asesoria p{
        font-size:18px;
    }

    .btn-asesoria{
        width:100%;
        padding:18px 25px;
        font-size:18px;
    }

}
/* =========================
   FOOTER
========================= */

.footer{
    width:100%;
    padding:90px 20px 70px;
    background:#020817;
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* efectos fondo */

.footer::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(
        circle,
        rgba(13,110,253,.10),
        transparent 70%
    );
    top:-180px;
    left:-150px;
}

.footer::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:radial-gradient(
        circle,
        rgba(255,0,0,.08),
        transparent 70%
    );
    bottom:-180px;
    right:-150px;
}

/* logo */

.footer-logo{
    font-family:'Orbitron', sans-serif;
    font-size:52px;
    font-weight:700;
    position:relative;
    z-index:2;
}

.footer-logo span{
    color:#0d6efd;
    text-shadow:
    0 0 10px rgba(13,110,253,.6),
    0 0 20px rgba(13,110,253,.4);
}

/* badge */

.footer-badge{
    display:inline-block;
    margin-top:30px;
    padding:14px 28px;
    border-radius:50px;

    border:1px solid rgba(13,110,253,.4);

    background:rgba(8,17,34,.9);

    color:#00d9ff;

    font-size:15px;
    font-weight:700;
    letter-spacing:1px;

    box-shadow:
    0 0 15px rgba(13,110,253,.18);

    position:relative;
    z-index:2;
}

/* línea */

.footer-line{
    width:80px;
    height:2px;
    margin:40px auto 30px;
    background:linear-gradient(
        90deg,
        #ff1e1e,
        #0d6efd
    );
    border-radius:10px;
    position:relative;
    z-index:2;
}

/* copyright */

.footer-copy{
    color:#8e8e8e;
    font-size:15px;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

/* powered */

.footer-powered{
    color:#cfcfcf;
    font-size:18px;
    font-weight:600;
    position:relative;
    z-index:2;
}

.footer-powered span{
    color:#0d6efd;
    font-weight:700;
    text-shadow:
    0 0 10px rgba(13,110,253,.5);
}

/* responsive */

@media(max-width:768px){

    .footer{
        padding:70px 20px 50px;
    }

    .footer-logo{
        font-size:34px;
    }

    .footer-badge{
        font-size:13px;
        padding:12px 20px;
    }

    .footer-powered{
        font-size:16px;
    }

}
/* =========================
   BLOQUE GLOBAL STREAMING
========================= */

.global-streaming{
    max-width:1200px;
    margin:100px auto;
    padding:70px 50px;

    background:linear-gradient(
        145deg,
        rgba(5,11,24,.96),
        rgba(2,8,23,.98)
    );

    border-radius:30px;

    border:1px solid rgba(13,110,253,.18);

    box-shadow:
    0 0 25px rgba(13,110,253,.08),
    inset 0 0 40px rgba(255,0,0,.02);

    text-align:center;

    position:relative;
    overflow:hidden;
}

/* efectos fondo */

.global-streaming::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;

    background:radial-gradient(
        circle,
        rgba(13,110,253,.10),
        transparent 70%
    );

    top:-120px;
    right:-120px;
}

.global-streaming::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;

    background:radial-gradient(
        circle,
        rgba(255,0,0,.08),
        transparent 70%
    );

    bottom:-120px;
    left:-120px;
}

/* título */

.global-streaming h2{

    font-family:'Orbitron', sans-serif;

    font-size:48px;

    margin-bottom:35px;

    color:#00d9ff;

    text-shadow:
    0 0 10px rgba(13,110,253,.45);

    position:relative;
    z-index:2;
}

/* textos */

.global-streaming p{

    max-width:950px;

    margin:0 auto 30px;

    font-size:24px;

    line-height:1.9;

    color:#d6d6d6;

    position:relative;
    z-index:2;
}

/* palabras destacadas */

.global-streaming strong{

    color:#ffffff;

    font-weight:700;
}

/* responsive */

@media(max-width:768px){

    .global-streaming{

        padding:50px 25px;
        margin:70px 20px;
        border-radius:20px;
    }

    .global-streaming h2{

        font-size:30px;
        line-height:1.4;
    }

    .global-streaming p{

        font-size:18px;
        line-height:1.8;
    }

}
/* =========================
   RADIO PLAYER
========================= */

.radio-player{

    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    padding:18px 30px;

    background:rgba(2,8,23,.96);

    backdrop-filter:blur(12px);

    border-top:1px solid rgba(13,110,253,.25);

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:99999;

    box-shadow:
    0 -5px 25px rgba(13,110,253,.12);
}

/* lado izquierdo */

.player-left{

    display:flex;
    align-items:center;
    gap:18px;
}

.player-logo{

    width:60px;
    height:60px;

    border-radius:50%;

    background:linear-gradient(
        45deg,
        #ff1e1e,
        #0d6efd
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-family:'Orbitron', sans-serif;

    font-size:22px;
    font-weight:bold;

    box-shadow:
    0 0 20px rgba(13,110,253,.35);
}

.player-info h3{

    font-size:20px;
    margin-bottom:4px;
}

.player-info p{

    color:#9f9f9f;
    font-size:15px;
}

/* centro */

.player-center{

    display:flex;
    align-items:center;
    gap:20px;
}

.play-btn{

    width:70px;
    height:70px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    font-size:26px;
    color:white;

    background:linear-gradient(
        45deg,
        #ff1e1e,
        #0d6efd
    );

    box-shadow:
    0 0 25px rgba(13,110,253,.35);

    transition:.3s;
}

.play-btn:hover{

    transform:scale(1.08);
}

.player-status{

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,0,0,.12);

    border:1px solid rgba(255,0,0,.3);

    color:#ff4d4d;

    font-weight:700;

    letter-spacing:1px;

    animation:pulseLive 1.5s infinite;
}

@keyframes pulseLive{

    0%{
        opacity:1;
    }

    50%{
        opacity:.5;
    }

    100%{
        opacity:1;
    }

}

/* volumen */

.player-right{

    width:220px;
}

.volume-control{

    width:100%;
    cursor:pointer;
}

/* responsive */

@media(max-width:768px){

    .radio-player{

        flex-direction:column;
        gap:20px;

        padding:20px;
    }

    .player-left{

        width:100%;
        justify-content:center;
    }

    .player-right{

        width:100%;
    }

    .play-btn{

        width:60px;
        height:60px;
    }

}
/* canción actual */

.song-title{

    margin-top:8px;

    font-size:14px;

    color:#00d9ff;

    font-weight:600;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

    max-width:260px;

    animation:glowSong 2s infinite alternate;
}

/* estado */

.radio-status{

    color:#ff4d4d;

    font-size:13px;

    letter-spacing:1px;

    font-weight:700;
}

@keyframes glowSong{

    from{
        opacity:.6;
    }

    to{
        opacity:1;
    }

}
/* =========================
   HERO SLIDER
========================= */

.hero-slider{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;
}

/* imagen */

.hero-slider img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* overlay oscuro */

.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        rgba(2,8,23,.95) 10%,
        rgba(2,8,23,.55) 50%,
        rgba(2,8,23,.25) 100%
    );
}

/* contenido */

.hero-content{

    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    max-width:750px;

    z-index:5;
}

.hero-content h1{

    font-family:'Orbitron', sans-serif;

    font-size:85px;

    line-height:1.1;

    margin-bottom:25px;

    color:white;

    text-shadow:
    0 0 15px rgba(0,0,0,.5);
}

.hero-content h1 span{

    color:#0d6efd;

    text-shadow:
    0 0 15px rgba(13,110,253,.55);
}

.hero-content p{

    font-size:28px;

    color:#d7d7d7;

    line-height:1.7;

    margin-bottom:40px;
}

/* botón */

.hero-btn{

    display:inline-block;

    padding:20px 45px;

    border-radius:60px;

    text-decoration:none;

    font-size:20px;

    font-weight:700;

    color:white;

    background:linear-gradient(
        45deg,
        #ff1e1e,
        #0d6efd
    );

    box-shadow:
    0 0 25px rgba(13,110,253,.35);

    transition:.35s;
}

.hero-btn:hover{

    transform:translateY(-5px) scale(1.03);

    box-shadow:
    0 0 35px rgba(13,110,253,.55);
}

/* responsive */

@media(max-width:768px){

    .hero-slider{

        height:85vh;
    }

    .hero-content{

        left:25px;
        right:25px;
    }

    .hero-content h1{

        font-size:42px;
    }

    .hero-content p{

        font-size:18px;
    }

    .hero-btn{

        padding:16px 30px;
        font-size:17px;
    }

}