* {
    padding: 0;
    margin: 0;
    box-sizing: border-box !important;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

.mensajeChat {
    width: 90%;
}

body{
    background: var(--color-fondo);
}

.color__cards{
    background: var(--color-cards);
}

.color__text{
    color: var(--color-texto);
}

.color__cards__glass{
    background: var(--color-glass);
}

.red {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-texto);    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
    gap: 10px;
}

.redes ul li a {
    text-decoration: none;
}

.menu {
    display: block;
}

.menux {
    display: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: 20% 80%;
    height: 80px;
}

.menu-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
}

.menu-list ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin-right: 70px !important;
}

.menu-list ul li a {
    color: var(--color-texto) !important;
    text-decoration: none;
    transition: 1s;
}

.menu-list ul li a:hover {
    opacity: 0.7;
}

.cnt__menu__responsivo {
    height: 80px;
    background: var(--color-cards);
    color: var(--color-texto);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-radius: 15px 15px 0 0;
}

.cnt__menu__responsivo div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    font-size: 18pt;
}

.link {
    color: var(--color-texto) !important;
    text-decoration: none;
    transition: 1s;
}

.link:hover{
    opacity: 0.7;
}

.color-fondo {
    background: var(--color-fondo) !important;
}

.color-texto {
    background: var(--color-texto) !important;
}

.color-cards {
    background: var(--color-cards) !important;
}

.glass {
    background: var(--color-glass) !important;
    background-color: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.5px);
    -webkit-backdrop-filter: blur(9.5px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3);
    color: var(--color-texto) !important;
}

.cnt__cabecera {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.fondo {
    z-index: 1 !important;
    box-sizing: border-box !important;
    overflow: clip;
}

.fondo img {
    animation: zoom-in-zoom-out 30s ease infinite;
    box-sizing: border-box !important;
    object-fit: cover !important;
    position: center center !important;
    overflow: clip;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1.2, 1.2);
    }

    50% {
        transform: scale(1.5, 1.5);
    }

    100% {
        transform: scale(1.2, 1.2);
    }
}

.lamina {
    /* From https://css.glass */
    background: rgba(7, 0, 0, 0.46);
    backdrop-filter: blur(15.7px);
    -webkit-backdrop-filter: blur(15.7px);
    z-index: 2;
}

.cnt__caratula {
    box-shadow: 2px 2px 29px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 2px 29px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 2px 29px 0px rgba(0, 0, 0, 0.75);
    width: 180px;
    height: 180px;
    margin-top: 130px !important;
}

.cnt__caratula img {
    border-radius: 10px;
}

.titulo {
    text-align: center !important;
    color: #ffffff;

}

.player {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #00000097;
    transition: 1s;
}

.player:hover button {
    opacity: 1;
}

.player button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 40pt;
    opacity: 0.5;
    transition: 1s;
}

.apps div a {
    transition: 1s;
}

.apps div a:hover {
    opacity: 0.5;
}

.redes ul {
    list-style: none;
    padding: 0;
}

.redes ul li a i {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes-floating {
    right: 40px !important;
    bottom: 20px !important;
}

.redes-floating ul {
    list-style: none;
    padding: 0;
    gap: 10px !important;    
}

.redes-floating ul li a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    display: none;
}

#descripcion {
    max-height: 350px;
    overflow-x: auto;
}

.megatitulo {
    font-size: 80pt;
}

.img__locutor {
    width: 100px;
    height: 100px;
}

.audio__podcast {
    width: 100% !important;
}

#content-block{
    display: block !important;
}



@media screen and (max-width:964px) {
    .menu {
        display: none;
    }

    .menux {
        display: block;
    }

    .cnt__caratula {
        margin-top: 0px !important;
    }

    .redes-floating {
        top: 50px !important;
        margin-right: 10px !important;
        height: 50px !important;
        width: 100% !important;
    }

    .logo{
        display: block !important;
        opacity: 0.7;
        margin-left: 10px;
        margin-top: 20px;
    }

    .megatitulo {
        font-size: 50pt;
    }

    #content-block{
        display: none !important;
    }

    #post, #videos, #podcast, #locutores{
        margin-bottom: 90px !important;
    }

   
}