/* @keyframes rotate-disc {
 from {
  transform: rotate(0deg);
 }
 to {
  transform: rotate(360deg);
 }
}

.rotate {
 animation: rotate-disc 3s linear infinite;
} */

#play {
 width: 50px;
 height: 50px;
 border: none;
 border-radius: 50%;
}

.duration {
 /* position: absolute;
 bottom: 45%;
 left: 50%;
 transform: translateX(-50%); */
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 height: 20px;
 margin-top: 40px;
}

.duration p {
 color: #fff;
 font-size: 15px;
 margin: 0px;
 font-family: "Mohave", sans-serif;
}

input[type="range"] {
 width: 40%;
}

input[type="range"] {
 -webkit-appearance: none;
 outline: none;
 height: 2px;
 margin: 0 15px;
}

.volume {
    margin-top: 25px;
 width: 100%;
 height: 30px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #fff;
}

.volume #volume_show {
 padding: 8px 12px;
 margin: 0 5px 0 0;
 border-radius: 5px;
}

.volume p {
 font-size: 15px;
}

.volume i {
 cursor: pointer;
}

@media screen and (max-width: 960px) {
 #play,
 #next {
  height: 55px;
  width: 55px;
 }
}

@media screen and (max-width: 768px) {
 #play,
 #next {
  height: 40px;
  width: 40px;
 }
}

.redes a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #2577af;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.redes a:hover {
    background-color: #2577af;
    color: #fff;
    transform: scale(1.1);
}


/* Contenedor del formulario */
.contact-form {
    background-color: #03375a;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* .contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
} */

/* Campos de entrada */
#contacto .form-control {
    border-radius: 10px;
    border: 2px solid #2577af;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    padding: 12px;
    font-size: 16px;
}

#contacto .form-control:focus {
    border-color: #4da3d4;
    box-shadow: 0 0 8px rgba(77, 163, 212, 0.5);
}

/* Botón de envío */
#contacto .btn-primary {
    background-color: #2577af;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 18px;
    padding: 12px;
}

#contacto .btn-primary:hover {
    background-color: #4da3d4;
    transform: scale(1.05);
}

/* Ícono en el botón */
#contacto .btn-primary i {
    transition: transform 0.2s ease;
}

#contacto .btn-primary:hover i {
    transform: translateX(3px);
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    #contacto .btn-primary {
        font-size: 16px;
        padding: 10px;
    }

    .enVivo{
        width: 40% !important;
    }
}

