*{
    box-sizing:border-box;
}

body{
    margin:0;
    background:#fff;
    color:#111;
    font-family:'Plus Jakarta Sans', Arial, sans-serif;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
}


/* CABECERA */

header{
    text-align:center;
    padding:50px 0;
}

.logo{
    width:250px;
    max-width:80%;
}

.claim{
    margin-top:18px;
    font-size:14px;
    letter-spacing:5px;
    font-weight:500;
}


/* PLAYER */

.player{
    max-width:850px;
    margin:20px auto;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    padding:20px;
    display:grid;
    grid-template-columns:60px 1fr auto;
    align-items:center;
    gap:25px;
}


.player button{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    border:1px solid #111;
    font-size:18px;
    cursor:pointer;
}


.player-info{
    min-width:0;
}


.station{
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
}


.song{
    font-size:17px;
    font-weight:400;
}


.status{
    color:#86b518;
    font-size:13px;
    text-align:right;
    white-space:nowrap;
}


/* INTRO */

.intro{
    text-align:center;
    padding:70px 0 50px;
}


h1{
    font-size:44px;
    line-height:1.15;
    font-weight:800;
    margin:0;
}


h1 span{
    color:#86b518;
}


.intro p{
    text-align:center;
    max-width:700px;
    margin:25px auto 0;
    font-weight:300;
    font-size:16px;
}


/* TITULOS */

h2{
    text-align:center;
    font-size:32px;
    font-weight:800;
    margin-top:40px;
}


.line{
    width:65px;
    height:4px;
    background:#86b518;
    margin:20px auto 35px;
}


/* PROGRAMACION */

.programas{
    max-width:900px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;
    text-align:center;
}


.programas img{
    width:135px;
    height:135px;
    object-fit:contain;
}


.programas h3{
    font-size:16px;
    font-weight:700;
    margin:15px 0 8px;
}


.programas b{
    color:#86b518;
    font-weight:500;
    font-size:14px;
}


.programas p{
    font-size:13px;
    line-height:1.35;
    font-weight:300;
    max-width:150px;
    margin:8px auto 0;
}


/* BLOQUE NEGRO */

.dark{
    background:#111;
    color:white;
    margin:50px -40px;
    padding:60px;
    text-align:center;
}


.dark h2{
    margin-top:0;
}


.dark span{
    color:#86b518;
}


/* MAPA */

.mapa{
    display:block;
    max-width:850px;
    width:100%;
    margin:30px auto;
}


/* FOOTER */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px;
}


/* TABLET */

@media(max-width:900px){

    .programas{
        grid-template-columns:repeat(3,1fr);
    }

}


/* MOVIL */

@media(max-width:600px){

    .container{
        padding:0 20px;
    }


    header{
        padding:40px 0;
    }


    .claim{
        font-size:12px;
        letter-spacing:4px;
    }


    /* PLAYER MOVIL CORREGIDO */

    .player{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:15px;
        padding:25px 10px;
    }


    .player button{
        width:52px;
        height:52px;
        display:flex;
        align-items:center;
        justify-content:center;
        margin:0 auto;
    }


    .player-info{
        width:100%;
        text-align:center;
    }


    .station{
        text-align:center;
        font-size:15px;
    }


    .song{
        text-align:center;
        font-size:18px;
        line-height:1.3;
    }


    .status{
        width:100%;
        text-align:center;
        margin-top:5px;
    }


    /* TITULAR MOVIL */

    h1{
        font-size:32px;
        line-height:1.15;
    }


    h2{
        font-size:25px;
    }


    .intro{
        padding:45px 0;
    }


    .programas{
        grid-template-columns:1fr;
        gap:45px;
    }


    .programas img{
        width:150px;
        height:150px;
    }


    .dark{
        margin:40px -20px;
        padding:45px 20px;
    }

}