/* ########## VISTA ESCRITORIO ########## */

#contendor-reproductor-fixed{ /* Para mantener espacio al hacer scroll */
    display: none;
    background-color: transparent;
    height: 50vh;
    margin: 0 0 0 0;
} 

#contendor-reproductor {
    background-color:transparent;
    padding: 0px 15% 0vh 15%;
    z-index: 1;
    height: 50vh;
    margin: 0vh 0% 0% 0%;
    display:flex;
    position: relative;
    align-items: center;
    border-radius: 0px;
}
    
    #contenedor-caratula {
        width:  100%;
        max-width: 220px;
        min-width: 180px;
        display: flex;
        flex: 1;
    }

        #cover {
            width: 100%;
            padding-top: 100%; /* Esto hace que el div sea cuadrado (altura igual al ancho) */
            background-image: url(../../Imagenes/fondo-caratula.png);
            background-size: 100%;
            border-radius: 3em;
            position: relative;
            align-items: center; /* Alinea verticalmente al centro, depende del flex del contenedor padre */
        }

            #coverImage {
                top: 0;
                left: 0;
                width: 100%; /* ocupa el 100% del ancho del div "cover" */
                height: 100%;
                object-fit: cover;
                border-radius: 3em;
                position: absolute;
            }
                              
    #contenedor-nowplaying {
        height: auto;
        width: 100%;
        margin: 0px auto 0 auto;
        padding: 0% 0% 0% 17px;
        transition: 2s ease;
        display: flex;
        flex-direction: column;
        flex: 2;
    }

        #al-aire {
            width: 65px;
            height: 15px;
            margin: 0;
            display: flex;
            align-items: left;
            justify-content: left;
            font-family: Poppins, system-ui;
            font-size: 9px;
            color: #fff;
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px) saturate(160%);
            -webkit-backdrop-filter: blur(8px) saturate(160%);
            border: 1px solid rgba(255,255,255,.18);
        }

            #ecualizador {
                margin-left: 0px;
                display: flex;
                align-items: flex-end;
                padding: 2px 0px 0px 5px;
                justify-content: center;
                width: 20px;
                height: 10px;
            }

                .barra {
                    width: 2px;
                    margin: 0 1px;
                    background-color: #FFFFFF;
                    transition: height 0.3s ease-in-out;
                }

                    #texto-al-aire{
                        flex: 2;
                        padding-top: 2px;
                    }

        #nombre-cancion {
            height: auto;
            width: 100%;
            margin: auto;
            padding: 0;
            position: relative;
            color: white;
        }

            #song {
                width: 100%;
                height: auto;
                top: 0px;
                text-align: left;
                font-family: Poppins;
                font-size: 1.6em;  
                text-transform: uppercase;
                font-weight: 700;
                position: relative;
                line-height: 1.2;
                text-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
            }

            #artist {
                width: 100%;
                height: auto;
                top: -15px;
                text-align: left;
                font-family: Poppins;
                font-size: 0.9em;  
                font-weight: normal;
                position: relative;
                line-height: 1.2;
                text-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
            }

            #album_song {
                display: none;
            }

        #reproductor {
            background-color: ;
            display: flex;
            margin: -10px 0 0 0;
        }

            #playPauseButton {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                border-radius: 50%;
                background-color: #FE330A;
                flex: 0 0 50px;
                    /* Vidrio teñido */
                background: linear-gradient(
                    135deg,
                    rgba(254, 51, 10, 0.55),
                    rgba(254, 51, 10, 0.25));
                    /* Glass */
                backdrop-filter: blur(10px) saturate(140%);
                -webkit-backdrop-filter: blur(10px) saturate(140%);
                    /* Borde tipo cristal */
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
            }

                #playImage,
                #pauseImage {
                    display: block;
                    width: 80%;
                    height: 80%;
                }

                    #pauseImage {
                        display: none;
                    }

                /* Animación para los botones */
                #playPauseButton:hover img, 
                #playPauseButton:hover {
                    transform: scale(1.2);
                    transition: transform 0.5s ;
                }

                    #playPauseButton img, 
                    #playPauseButton {
                        transform: scale(1);
                        transition: transform 1s;
                    }

            #boton-like {
                width: 50px;
                height: 50px;
                margin: 0px 0px 0px 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                border-radius: 50%;
                background-color: #FE330A;
                flex: 0 0 50px;
                transform: scale(1);
                transition: transform 1s;
                    /* Vidrio teñido */
                background: linear-gradient(
                    135deg,
                    rgba(254, 51, 10, 0.55),
                    rgba(254, 51, 10, 0.25));
                    /* Glass */
                backdrop-filter: blur(10px) saturate(140%);
                -webkit-backdrop-filter: blur(10px) saturate(140%);
                    /* Borde tipo cristal */
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: transform 0.2s ease, box-shadow 0.2s ease;
            }                                

                                /* Imagen del botón */
                                #boton-like img {
                                    width: 60%;
                                    height: 60%;
                                    cursor: pointer;
                                    transform: scale(1);
                                    transition: transform 1s;
                                    background-color:;
                                    border-radius: 50%;
                                    }

                                                #boton-like:hover {
                                                    transform: scale(1.2);
                                                    transition: transform 0.5s;
                                                    border-radius: 50%;
                                                    }

                                                /* .boton-like img#boton-like-song.pulsado */
                                                #boton-like-song.pulsado {                     
                                                    background: rgba(0, 177, 64, 0.6);
                                                    backdrop-filter: blur(10px) saturate(140%);
                                                    -webkit-backdrop-filter: blur(10px) saturate(140%);
                                                    border: 1px solid rgba(0, 177, 64, 0.3);
                                                    width: 70%;
                                                    height: 70%;
                                                    padding: 15%;
                                                    border-radius: 50%;
                                                    transform: scale(1.1);
                                                    transition: transform 5s ease-in 1s;
                                                    animation-delay: 7s;
                                                    }

                                .slider {
                                    width: 100px;
                                    height: 50px;
                                    margin-left: 20px;
                                    flex: 0;
                                    display: inline-block;
                                    }

/* ########## VISTA PARA SMARTPHONES ########## */

@media (max-width: 768px) {
    
/* REPRODUCTOR */

#contendor-reproductor-fixed{
    display: none;
    height: 45vh;
    margin: 2vh 0 0 0;
} 
    
#contendor-reproductor {
    width: 90%;
    height: 45vh;
    margin: 0vh 0 0 0;
    padding: 0vh 5% 0vh 5%;
    vertical-align: center;
    position: relative;
    z-index: 0;
    }

    #contenedor-caratula {
        width: 100%;
        max-width: 350px;
        min-width: 160px;
        flex: 1;
        }
                        
            #cover {
                width: 100%;
                padding-top: 100%; /* Esto hace que el div sea cuadrado (altura igual al ancho) */
                background-image: url(../Imagenes/fondo-caratula.png);
                background-size: 100%;
                border-radius:2em;
                box-shadow: 0px 0px 30px -15px;
                position: relative;
                }

                    #coverImage {
                        top: 0;
                        left: 0;
                        width: 100%; /* La imagen ocupa el 100% del ancho div "cover" */
                        border-radius: 2em;
                        }

    #contenedor-nowplaying {
        width: 100%;
        margin: 0px 0px 0vh 10px;
        padding: 10px 0px 0px 0px;
        transition: 2s ease;
        vertical-align: center;
        display: flex;
        flex: 2;
        }

            #al-aire {
                width: 60px;
                height: 15px;
                margin: 0;
                font-family: poppins;
                background-color: #FE330A;
                font-size: 9px;
                color: #FFFFFF;
                border-radius: 10px;
                padding: 2px 10px 2px 2px ;
                text-align: left;
                box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0);
                flex: 0;
                display: flex;
                }

                    #ecualizador {

                        }

                            .barra {
                                width: 2px;
                                margin: 0 1px;
                                background-color: #FFFFFF;
                                transition: height 0.3s ease-in-out;
                                }

                    #texto-al-aire{
                        flex: 2;
                        padding: 3px 0px 0px 0px;
                        line-height: 1;
                        font-size: 10px;
                        }

            #nombre-cancion {
                width: 100%;
                margin: auto;
                height: auto;
                padding: 0px 0px 0px 0px;
                flex-direction: row; /* Alinea los elementos en una columna */
                justify-content: center; /* Alinea al centro verticalmente */
                position: relative;
                display: block;
                flex: 0;
                }

                    #song {
                        margin: auto;
                        width: 100%;
                        height: auto;
                        text-align: left;
                        font-family: Poppins;
                        font-size: 1em;  
                        text-transform: uppercase;
                        font-weight: 800;
                        position: relative;
                        line-height: 1;
                        overflow: hidden;
                        text-shadow: 0px 0px 15px rgba(0, 0, 0, 0);
                    }

                    #artist {
                        width: 100%;
                        height: auto;
                        top: -20px;
                        text-align: left;
                        font-family: Poppins;
                        font-size: 0.75em;  
                        font-weight: normal;
                        position: relative;
                        line-height: 1.15;
                        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
                    }
    
                    #album_song {
                    }


            #reproductor {
                width: auto;
                height: auto;
                margin: -20px 0 0% 0;
                position: relative;
                align-items: center;
                justify-content: right;
                flex: 1;
                }

                    #playPauseButton {
                        width: 50px;
                        height: 50px;
                        display: flex;
                        cursor: pointer;
                        border-radius: 50%;
                        flex: 0 0 50px;
                        }
                              
                                /* Imagen del botón */
                                #boton-like img {
                                    width: 70%;
                                    height: 70%;
                                    cursor: pointer;
                                    transform: scale(1);
                                    transition: transform 1s;
                                    border-radius: 50%;
                                    }

                                                #boton-like:hover {
                                                    transform: scale(1);
                                                    }

                                                /* .boton-like img#boton-like-song.pulsado */
                                                #boton-like-song.pulsado {                     
                                                    width: 65%;
                                                    height: 65%;
                                                    border-radius: 50%;
                                                    transform: scale(1.1);
                                                    transition: transform 1s;
                                                    }

                            #playImage,
                            #pauseImage {
                                display: block;
                                width: 80%;
                                height: 80%;
                                }

                            #pauseImage {
                                display: none;
                                }

                            #playPauseButton:hover img, 
                            #playPauseButton:hover {
                                transform: scale(1);
                                }

                            #playPauseButton img, 
                            #playPauseButton {
                                transform: scale(1);
                                }

                    .slider {
                        width: 100px;
                        margin-left: 10px;
                        display: none;
                        }





}