
        /* QUITA LOS ESPACIOS VACIOS Y CENTRALIZA TODA LA WEB */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        /* QUITA LOS ESPACIOS VACIOS Y CENTRALIZA TODA LA WEB */
        
        

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background-color: #121212;
            color: #fff;
            margin: 0;
            padding: 0;
        }
        
        h1 {
            text-align: center;
            margin-top: 30px;
            font-size: 2.5em;
            color:rgb(215, 56, 247);
        }
        
        .container {
            max-width: 1000px; /*------MODIFICAR EL CONTENEDOR CANCIONES VISTA ESCRITORIO--------*/
            margin: 20px auto;
            padding: 0 15px;
        }



        
        /* Estilos mejorados del carrusel */
        .carousel {
            display: flex;
            overflow: hidden;
            position: relative;
            width: 100%;
            padding: 0;
            background-color: #1F1F1F;
            aspect-ratio: 16 / 9;
            max-height: 70vh;
            margin: 20px auto;
            max-width: 1200px;
            border-radius: 15px; /* Borde redondeado del carrusel */
            box-shadow: 0 4px 10px rgba(221, 3, 250, 0.5); /* Sombra para efecto visual */
        }

        .carousel-item img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
                border-radius: 15px; /* Borde redondeado de las imágenes */
            }



        .carousel-inner {
            display: flex;
            transition: transform 1s ease;
            width: 100%;
            height: 100%;
        }

        .carousel-item {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.7);
            color: #fff;
            border: none;
            font-size: 2em;
            cursor: pointer;
            z-index: 10;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .carousel-btn:hover {
            background-color: rgba(0, 0, 0, 0.9);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        /* Ajustes responsivos para el carrusel */
        @media screen and (max-width: 768px) {
            .carousel {
                aspect-ratio: 4 / 3;
                max-height: 50vh;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.5em;
            }
        }

        @media screen and (max-width: 480px) {
            .carousel {
                aspect-ratio: 1 / 1;
                max-height: 40vh;
            }
            
            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1.2em;
            }
        }





        



        /* Estilos existentes para las canciones ESTILO PARA EL CONTENEDOR DE REPRODUCTOR E INFO DE LA CANCION*/
        /* Estilos existentes para las canciones ESTILO PARA EL CONTENEDOR DE REPRODUCTOR E INFO DE LA CANCION*/
        .song {
            display: flex;
            align-items: center;
            background-color: #1F1F1F;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s;
        }
        
        .song:hover {
            background-color: #282828;
        }
        
        .cover {
            
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }
        
        

        .song {
            display: flex;
            flex-direction: column; /* Asegura que el reproductor esté debajo de la cabecera */
            gap: 15px; /* Espaciado entre la cabecera y el reproductor */


            
                align-items: flex-start; /* Alinea la parte superior de cada canción */
        }

        .song-header {
            display: flex; /* Imagen y descripción estarán lado a lado */
            align-items: center; /* Alinea verticalmente la imagen y la descripción */
            gap: 20px; /* Espacio entre la imagen y la descripción */
        }

        .cover {
            width: 100px; /* Ajusta el tamaño de la imagen según sea necesario */

            height: 100px;
            border-radius: 8px; /* Opcional: bordes redondeados para la imagen */
        }

        .song-info {
            flex: 1; /* Permite que la descripción ocupe el espacio restante */
        }

        .player {
            width: 100%; /* Asegura que el reproductor se alinee con todo el contenido */
        }
        


        /* Ajustes para vista de escritorio LISTA DE CANCIONES CONTEINER */
        @media (min-width: 768px) {
            .song {
                flex-direction: row; /* Coloca las canciones en filas */
                align-items: flex-start; /* Alinea la parte superior de cada canción */
            }

            .song-header {
                flex: 1; /* Imagen y descripción ocupan espacio proporcional */
            }

            .cover {
                width: 100px; /* Tamaño más pequeño en escritorio */
            }

            .player {
                flex-basis: 50%; /* El reproductor siempre ocupa toda la fila */
                margin-top: 10px; /* Añade un espacio entre cabecera y reproductor */
            }
        }

     /* ------------------------------------------------------------------------------------------ */   
     /* ------------------------------------------------------------------------------------------ */




        .menu {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 250px;
            background-color: #1F1F1F;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        
        .menu.open {
            transform: translateX(0);
        }
        
        .menu ul {
            list-style: none;
            padding: 20px;
            margin: 0;
        }
        
        .menu ul li {
            margin: 15px 0;
        }
        
        .menu ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
        }
        
        .hamburger {
            position: fixed;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5em;
            cursor: pointer;
            z-index: 1100;
        }





       /* Estilos para el buscador con borde y brillo */
.search-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 0 50px;
}

.search-box {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid rgb(215, 56, 247); /* Borde del color especificado */
    border-radius: 25px;
    background-color: #282828;
    color: #fff;
    box-shadow: 0 0 10px rgba(215, 56, 247, 0.8); /* Brillo en el borde */
    transition: all 0.3s ease;
}

.search-box:focus {
    outline: none;
    background-color: #333;
    box-shadow: 0 0 20px rgba(215, 56, 247, 1); /* Brillo más intenso al enfocar */
}

.search-box::placeholder {
    color: #b3b3b3;
}

/* Estilo para resultados no encontrados */
.no-results {
    text-align: center;
    padding: 20px;
    color: #b3b3b3;
    font-style: italic;
}

.highlight {
    background-color: rgba(215, 56, 247, 0.2);
    padding: 2px;
    border-radius: 3px;
}

/* Ajustes responsivos */
@media screen and (max-width: 768px) {
    .search-container {
        max-width: 90%;
    }

    .search-box {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .search-container {
        max-width: 95%;
        margin: 20px auto;
    }

    .search-box {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 20px;
    }

    .no-results {
        padding: 15px;
        font-size: 14px;
    }
}


/* SECCION LOGO */
 header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 35%;
            background-color: #1F1F1F;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .logo {
            height: 50px;
        }
        
        .title-small {
            font-size: 1.2em;
            color: rgb(215, 56, 247);
            margin: 0;
            padding: 10px 20PX;
        }





/* SECCION FOOTER */
    footer {
    background-color: #1F1F1F;
    color: #b3b3b3;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    margin-top: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3); /* Sombra en la parte superior del footer */
}

footer a {
    color: #d738f7;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}    



/* Efecto de neón para los íconos */
.icon-lupa, .icon-nota {
    color: #D16BA5;
    font-size: 1.5em;
    text-shadow: 0 0 5px #D16BA5, 0 0 10px #D16BA5, 0 0 20px #FF00FF, 0 0 30px #FF00FF, 0 0 40px #FF00FF;
    transition: transform 0.2s ease-in-out;
}

/* Animación de los íconos al pasar el cursor */
.icon-lupa:hover, .icon-nota:hover {
    transform: scale(1.2); /* Aumenta ligeramente el tamaño */
}


/* Estilo del botón de WhatsApp */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color:rgb(211, 42, 245);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.whatsapp-button:hover {
    background-color: #1EBE54;
    transform: scale(1.05);
}

.whatsapp-button img {
    vertical-align: middle;
}











   
