
:root{
    --bg:#070707;
    --card:#121212;
    --purple:#BC00FF;
    --blue:#3C00FF;
    --white:#FFFFFF;
    --gray:#9a9a9a;
    --green:#3DFF84;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:
    radial-gradient(circle at top, rgba(188,0,255,.25), transparent 35%),
    radial-gradient(circle at bottom, rgba(60,0,255,.25), transparent 35%),
    #070707;
    font-family:'Inter',sans-serif;
    color:#fff;
    overflow-x:hidden;
}

/* SCROLL */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--purple);
    border-radius:20px;
}

/* HEADER */

.main-header{
    padding-top:20px;
    position:relative;
    z-index:100;
}

.logo{
    text-align:center;

}

.logo img{
    width:200px;
}

@media(max-width:991px){

    .logo{
    text-align:center;
    margin-left: 85px;
    
}

}

.logo h1{
    font-family:'Montserrat';
    font-size:38px;
    font-weight:800;
    margin-top:5px;
    letter-spacing:2px;
    background:linear-gradient(to right,#fff,#dca3ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.logo span{
    color:#c77dff;
    font-size:15px;
    letter-spacing:3px;
}

.top-right{
    position:absolute;
    top:25px;
    right:30px;
    display:flex;
    gap:15px;
}

/* BUTTONS */

.lang-btn,
.whatsapp-btn{
    border:none;
    padding:12px 22px;
    border-radius:18px;
    font-weight:600;
    color:#fff;
    backdrop-filter:blur(20px);
    transition:.3s;
}

.lang-btn{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:0 0 20px rgba(188,0,255,.3);
}

.whatsapp-btn{
    background:rgba(61,255,132,.15);
    border:1px solid rgba(61,255,132,.4);
    box-shadow:0 0 25px rgba(61,255,132,.5);
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

/* MENU */

.main-menu{
    margin-top:30px;
    text-align:center;
}

.main-menu a{
    color:#fff;
    text-decoration:none;
    margin:0 18px;
    font-size:18px;
    position:relative;
}

.main-menu a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:linear-gradient(to right,var(--purple),var(--blue));
    left:0;
    bottom:-6px;
    transition:.3s;
}

.main-menu a:hover::after{
    width:100%;
}

/* HERO */

.hero{
    padding-top:30px;
    text-align:center;
    position:relative;
}

.wave{
    margin:20px auto;
    width:400px;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:6px;
}

.wave span{
    width:6px;
    background:linear-gradient(to top,var(--blue),var(--purple));
    border-radius:20px;
    animation:wave 1s infinite ease-in-out;
}

.wave span:nth-child(1){height:20px; animation-delay:.1s;}
.wave span:nth-child(2){height:45px; animation-delay:.2s;}
.wave span:nth-child(3){height:25px; animation-delay:.3s;}
.wave span:nth-child(4){height:60px; animation-delay:.4s;}
.wave span:nth-child(5){height:30px; animation-delay:.5s;}
.wave span:nth-child(6){height:50px; animation-delay:.6s;}
.wave span:nth-child(7){height:20px; animation-delay:.7s;}

@keyframes wave{
    0%,100%{
        transform:scaleY(.6);
    }
    50%{
        transform:scaleY(1.4);
    }
}

.play-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 60px;
    border-radius:25px;
    border:none;
    color:#fff;
    font-size:32px;
    font-weight:800;
    font-family:'Montserrat';
    background:linear-gradient(to right,var(--blue),var(--purple));
    box-shadow:
    0 0 20px rgba(188,0,255,.7),
    0 0 50px rgba(60,0,255,.5);
    transition:.3s;
}

.play-btn:hover{
    transform:scale(1.05);
}

/* NOW PLAYING */

.now-playing{
    width:500px;
    margin:25px auto;
    padding:15px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 0 25px rgba(188,0,255,.25);
}

.now-playing img{
    width:70px;
    height:70px;
    border-radius:15px;
}

.now-playing h4{
    font-size:20px;
    margin-bottom:5px;
}

.now-playing p{
    color:#aaa;
    margin:0;
}

/* CARDS */

.glass-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    backdrop-filter:blur(20px);
    box-shadow:0 0 25px rgba(188,0,255,.12);
}

.section-title{
    font-family:'Montserrat';
    font-size:36px;
    font-weight:800;
    margin-bottom:25px;
}

/* PROGRAMACION */

/* HOME SECTIONS */

.home-sections{
    margin-top:60px;
}

/* TITLES */

.mini-title{
    color:#fff;
    font-size:32px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    margin-bottom:20px;
    letter-spacing:1px;
}

/* PROGRAMACION */

.schedule-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:25px;
    backdrop-filter:blur(20px);

    box-shadow:
    0 0 25px rgba(188,0,255,.12),
    inset 0 0 15px rgba(255,255,255,.02);
}

.schedule-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;

    padding:14px 15px;
    margin-bottom:12px;

    border-radius:16px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.04);

    transition:.3s;
}

.schedule-item:hover{
    transform:translateX(5px);

    border-color:rgba(188,0,255,.35);

    box-shadow:
    0 0 15px rgba(188,0,255,.2);
}

.active-program{
    border-color:rgba(188,0,255,.45);

    box-shadow:
    0 0 20px rgba(188,0,255,.3);
}

.hour{
    color:#ffffff;
    font-weight:700;
    font-size:14px;
    min-width:90px;
}

.program-name{
    flex:1;
    color:#cfcfcf;
    font-size:14px;
}

.music-icon{
    color:#BC00FF;
    font-size:15px;
}

/* PODCASTS */

.podcast-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.podcast-box{
    position:relative;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    backdrop-filter:blur(20px);

    transition:.35s;

    box-shadow:
    0 0 20px rgba(188,0,255,.08);
}

.podcast-box:hover{
    transform:translateY(-8px);

    border-color:rgba(188,0,255,.4);

    box-shadow:
    0 0 30px rgba(188,0,255,.3);
}

.podcast-image{
    position:relative;
    overflow:hidden;
}

.podcast-image img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

/* PLAY OVERLAY */

.play-overlay{
    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:55px;
    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(20px);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    box-shadow:
    0 0 20px rgba(188,0,255,.4);
}

/* PODCAST INFO */

.podcast-info{
    padding:15px;
}

.podcast-info h4{
    color:#fff;
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
    line-height:1.4;
}

.podcast-info p{
    color:#9d9d9d;
    font-size:12px;
    margin:0;
    line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:991px){

    .podcast-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .podcast-grid{
        grid-template-columns:1fr;
    }

    .mini-title{
        font-size:26px;
    }

}




/* NEWS */

.news-section{
    margin-top:50px;
    padding:35px;
}

.news-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.news-card:hover{
    transform:translateY(-6px);
    box-shadow:0 0 30px rgba(188,0,255,.25);
}

.news-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.news-content{
    padding:18px;
}

.news-content h4{
    font-size:18px;
    margin-bottom:10px;
}

.news-content p{
    color:#aaa;
    font-size:14px;
}

.read-btn{
    padding:10px 18px;
    border:none;
    border-radius:12px;
    background:linear-gradient(to right,var(--blue),var(--purple));
    color:#fff;
    font-weight:600;
}

/* PLAYER */

.sticky-player{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(10,10,10,.92);
    border-top:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    z-index:9999;
    padding:12px 20px;
}

.player-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.player-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.player-left img{
    width:55px;
    height:55px;
    border-radius:10px;
}

.player-center{
    display:flex;
    align-items:center;
    gap:20px;
}

.control-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:linear-gradient(to right,var(--blue),var(--purple));
    color:#fff;
    font-size:20px;
}

.player-wave{
    display:flex;
    align-items:flex-end;
    gap:4px;
}

.player-wave span{
    width:4px;
    background:linear-gradient(to top,var(--blue),var(--purple));
    border-radius:20px;
    animation:wave 1s infinite ease-in-out;
}

.player-wave span:nth-child(1){height:12px;}
.player-wave span:nth-child(2){height:25px;}
.player-wave span:nth-child(3){height:15px;}
.player-wave span:nth-child(4){height:30px;}
.player-wave span:nth-child(5){height:18px;}

.social-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:15px;
    background:linear-gradient(to right,var(--blue),var(--purple));
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){

    .now-playing{
        width:100%;
    }

    .wave{
        width:100%;
    }

    .player-inner{
        flex-direction:column;
        gap:15px;
    }

    .top-right{
        position:relative;
        justify-content:center;
        top:0;
        right:0;
        margin-top:20px;
    }

    .main-menu a{
        display:block;
        margin:12px 0;
    }

}









/* BOTON HAMBURGUESA */

.menu-toggle{
    display:none;
    width:50px;
    height:50px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    font-size:22px;
    backdrop-filter:blur(20px);
    cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

    .header-content{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .main-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#0B0B0B;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 20px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:.3s ease;
        z-index:999;
    }

    .main-menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

}





/* TOP */

.podcast-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

/* NAV */

.podcast-nav{
    display:flex;
    gap:10px;
}

.podcast-prev,
.podcast-next{
    width:42px;
    height:42px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    cursor:pointer;

    transition:.3s;
}

.podcast-prev:hover,
.podcast-next:hover{
    background:linear-gradient(to right,#3C00FF,#BC00FF);
}

/* SLIDER */

.podcast-slider{
    width:100%;
    overflow:hidden;
}

.podcast-slider .swiper-slide{
    height:auto;
}