* { 
    margin: 0;
    padding: 0px;
}

body {
    display: flex;
    width: auto;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    background: #FFF;
}

section {
    display: flex;
    /* padding: 0 685px; */
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    background: #565657 url(images/bg-image.png) no-repeat center center / cover fixed;
}

.frame {
    display: flex;
    width: auto;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.comp-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.txt-titulo {
    padding: 0px 10px;
    background-color: #f05836a1;
    color: #FFF;
    font-family: Oswald;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 10px;
}

.txt-subtitulo {
    color: #FFF;
    font-family: "Red Hat Display";
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.logo {
    width: 300px;
    height: 300px;
    aspect-ratio: 1/1;
    background: url(images/logo.png) rgba(211, 211, 211, 0) 50% / cover no-repeat;
    border-radius: 150px;
    box-shadow: 0 0 1.4em 1.4em rgba(255, 255, 255, 0.288);
}

.reproductor {
    display: flex;
    padding: 15px 15px;
    align-items: center;
    gap: 25px;
    border-radius: 30px;
    background: #FFF;
    position: relative;
}

/* .btn-play {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    background: #5C637E;
} */

.fa-circle-play {
    font-size: 30px;
    cursor: pointer;
}

.fa-circle-pause {
    font-size: 30px;
    cursor: pointer;
}

.comp-live {
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-live {
    display: flex;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: #E8000E;
}

.txt-live {
    color: #FFF;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.gif-online {
    width: 14px;
    height: 14px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    background: #E8000E;
}

.gif-circle {
    width: 25px;
    height: 25px;
    aspect-ratio: 1/1;
}

/*
.btn-volumen {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    background: #5C637E;
}*/

.btn-volumen {
    font-size: 25px;
    cursor: pointer;
}

.div-volumen {
    display: none;
    position: absolute;
    bottom: 150%; 
    left: 55%;
    z-index: 10; 
    background-color: #ffffff; /* Estilo para que se vea */
    border: 1px solid #ccc;
    border-radius: 10px;
    transform: rotate(270deg);
}

.barra-volumen {
    margin: 12px;
    margin-left: 5px;
    margin-right: 5px;
}

.mostrar-barra-volumen {
    display: flex !important;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
}

.txt-footer {
    /* align-self: stretch; */
    color: #FFF;
    text-align: center;
    font-family: Oswald;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.redes {
    display: flex;
    align-items: center;
    height: 35px;
    gap: 30px;
}

.container-icon {
    display: grid;
    place-items: center;
    height: 35px;
    width: 35px;
}

.prueba {
    width: 25px;
    height: 25px;
    border-radius: 20px;
    background: #d8120c;
}

.fa-brands {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
}

.fa-brands:hover {
    color: #F05736;
    font-size: 35px;
}

@media (max-width: 900px){
    .container-volumen {
        display: none;
    }

    body {
        overflow: hidden;
    }

    .frame {
        height: 90%;
    }

    section {
        align-items: flex-start;
        padding-top: 20px;
    }

    .txt-titulo {
        text-align: center;
        margin: 0 20px;
    }

    .txt-footer {
        margin: 0 20px;
    }

}