body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #FFF;
    color: #000;
}

/*
    CABECERA
*/
/*nav {
    position: fixed;
    height: 100px;
    background: #858585;
    background: linear-gradient(180deg, rgba(133, 133, 133, 1) 0%, rgba(46, 46, 46, 1) 100%);
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0px 30px;
    z-index: 2;

}

nav .logo {
    height: 80px;
}

nav h1 span {
    font-size: 16px;
    font-style: oblique;
}
@media screen and (max-width: 630px) {
    nav h1 {
        display:none;
    }
}*/

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #020617, #0f172a);
    color: #f8fafc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Logo */
nav .logo {
    width: auto;
    height: 60px;
}

/* Título */
nav h1 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

nav h1 span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #94a3b8;
    letter-spacing: 0.08em;
}

/* Reproductor */
.reproductor {
    display: grid !important;
    grid-template-columns: auto auto;
    grid-template-areas:
        "play texto"
        "play linea";
}
.reproductor .play {
    grid-area: play;
}
.reproductor .livetext {
    grid-area: texto;
    text-align: right;
    padding-right: 9px;
    animation: parpadeo 1.5s infinite;
    font-weight: bold;
    font-size: 14px;
    color: rgb(255, 0, 0);
}
.reproductor .linea {
    grid-area: linea;
    margin-top: -5px;
}

/* OCULTAR TITULO EN MÓVIL */
@media screen and (max-width: 630px) {
    nav h1 {
        display:none;
    }
}

/* Botón play */
.play {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #22d3ee;
    color: #020617;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.6);
}

/* Barra */
.linea {
    width: 120px;
    height: 4px;
    background: #1e293b;
    border-radius: 2px;
    overflow: hidden;
}

.itemlinea {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #22d3ee, #38bdf8);
}

/* Tiempo */
.currenttime {
    font-size: 0.8rem;
    color: #cbd5f5;
    min-width: 40px;
    text-align: right;
}



.playbtn {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    border-radius: 50%;
    cursor: pointer;
    margin: 25px 10px;
    vertical-align: top;
    transition: background-color 0.3s ease;
    padding-left: 6px;
}

.playbtn:hover {
    background-color: #CC0000;
}

.playbtn::before {
    content: "▶";
    color: #FFF;
    font-size: 20px;
    line-height: 50px;
}

.stopbtn::before {
    content: "⏹";
    color: #FFF;
    font-size: 20px;
    line-height: 50px;
}



/*
    CONTENIDO
*/

.contenido {
    margin-top: 100px;
    padding: 10px 0px;
    width: 95%;
    box-shadow: 1px 1px 8px #d9d9d9;
    margin: 100px auto 0px auto;
}

.facebook-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.facebook-link:active {
    transform: translateY(0);
}

h1 {
    font-size: 2em;
    color: #FFF;
}



/*
    PODCASTS
*/

.podcasts {
    max-width: 700px;
    margin: 0 auto;
    padding: 5px;
}

.podcast-item {
    border: 1px solid #BDBDBD;
    padding: 0px;
    margin: 5px;
    border-radius: 32px;
    display: grid;
    grid-template-areas: "logo texto";
}

.podcast-item img {
    height: 20px;
    float: left;
    margin: 0px 10px;
}

.playpodcastbtn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #FF0000;
    border-radius: 50%;
    cursor: pointer;
    margin: 5px 10px;
    vertical-align: top;
    transition: background-color 0.3s ease;
}

.playpodcastbtn:hover {
    background-color: #CC0000;
}

.playpodcastbtn::before {
    content: "▶";
    color: #FFF;
    font-size: 10px;
    line-height: 20px;
}

.playerembed {
    width: 95%;
    height: 500px;
    max-width: 800px;
}

.play {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid #c30000;
    background: linear-gradient(180deg, #ff5151, #830202);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.pause {
    background: linear-gradient(0deg, #ff5151, #830202);
}

.currenttime {
    font-weight: bold;
    font-size: 13px;
}

.linea {
    width: 100px;
    background-color: #e5e5e5;
    height: 5px;
    display: inline-block;
    margin: 0px 5px;
    border-radius: 3px;
    border: 1px solid #cfcbcb;
}

.linea .itemlinea {
    width: 3%;
    height: 5px;
    background-color: #b90000;
    border-radius: 3px;
}

.linea .addcorrer {
    animation: correr 0.5s linear infinite;
}

@keyframes correr {
    from {
        width: 95%;
    }

    to {
        width: 98%;
    }
}

.parpadeo {
    animation: parpadeo 1s linear infinite;
}

@keyframes parpadeo {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.reproductor {
    display: inline-block;
    width: 160px;
}

.sponsors {
    background-color: #BDBDBD;
    overflow-x: auto;
}

.sponsors .sponsor-item {
    display: inline-block;
    margin: 10px;
    padding: 10px;
    border: 1px solid #BDBDBD;
    border-radius: 8px;
    background-color: #FFF;
    width: 200px !important;
}

.sponsors .sponsor-item a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.sponsors .sponsor-item img {
    height: 150px;
}

@media screen and (max-width: 500px) {
    .sponsors .sponsor-item {
        width: 100px !important;
    }
    .sponsors .sponsor-item img {
        height: 75px;
    }
}

.contacto {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.contacto img {
    cursor: pointer;
}

#btn-instalar {
    border-radius: 9px;
    font-size: 22px;
    cursor: pointer;
    padding: 9px 50px;
    margin: 15px auto;
    width: fit-content;
    color: #0072ff;
    background-image: url(../images/getapp.webp);
    background-size: auto 90%;
    background-repeat: no-repeat;
    background-position: 2px;
}