body {
    background-color: #0F0F2D;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Cambia el peso según necesites */
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.contador {
   color: #fff;
   font-size: 14px;
    text-align: center;
}

.texto-de-contacto {
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.texto-de-contacto > span {
   font-weight: 700;
}

.footer {
    margin: 50px;
}

html::-webkit-scrollbar {
    width: 10px;                /* Grosor de la barra */
}

html::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);  /* Fondo del track */
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: rgb(0, 93, 214);  /* Color del scroll */
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 73, 168);  /* Al pasar el mouse */
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #0f172a;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
}

.song-title {
    font-size: 1rem;
}

.download-btn {
    padding: 8px 14px;
    background: #60a5fa;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.download-btn:hover {
    background: #3b82f6;
}

.social-links {
    display: flex;
    margin: 10px;
    gap: 20px;
        justify-content: center; /* Centra horizontalmente */
    align-items: center;      /* Opcional: centra verticalmente */
}

.social-icon {
    color: white;
    font-size: 35px;
    transition: 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* SCROLL */

.song-list {
    max-height: 200px;      /* Ajusta el tamaño de la caja */
    overflow-y: auto;       /* Activa el scroll vertical */
    padding: 10px;
}

.song-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
}

.song-list::-webkit-scrollbar {
    width: 10px;                /* Grosor de la barra */
}

.song-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);  /* Fondo del track */
    border-radius: 10px;
}

.song-list::-webkit-scrollbar-thumb {
    background: rgb(0, 172, 29);  /* Color del scroll */
    border-radius: 10px;
}

.song-list::-webkit-scrollbar-thumb:hover {
    background: rgb(0, 147, 25);  /* Al pasar el mouse */
}

.logo {
    max-width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .logo {
        max-width: 250px;
        display: block;    /* permite centrar con margin auto */
        margin: 0 auto;    /* centra horizontalmente */
    }
}

/* KIDS */

.barra_kids {
    margin-top: 50px;
    margin-bottom: 15px;
    width: 100%;
    height: 100%;
}