@import url('https://fonts.googleapis.com/css2?family=Poetsen+One&display=swap');
header{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: clamp(5px, 5%, 10px);
    padding-top: clamp(25px, 15%, 50px);
}

header ul{
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

header img{
    min-width: 55px;
    max-width: 150px;
    width: 100%;
    max-height: 150px;
    min-height: 55px;
    height: 100%;
    margin: clamp(5px, 5%, 15px);
}

ul{
    list-style: none;
}

iframe{
    height: 300px;
}

nav{
    padding-right: clamp(3px, 5%, 6px);
    padding-left: clamp(3px, 5%, 6px);
}
.firma{
    display: flex;
    justify-content: end;
    margin: clamp(10px, 5%, 25px);
    font-family: Impact, Haettenschweiler, 'Arial Black', sans-serif;
}

.Testimonios{
    font-family: 'Times New Roman', Times, serif;
    margin: auto;
}
.cuerpo{
    font-size: clamp(16px, 4vw, 26px);
    margin: clamp(10px, 5%, 30px);
}

.titulo_principal{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: rgb(0, 0, 155);
}

.titulo2{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: rgb(75, 150, 255);
    font-family: 'calibri black';
}

.nombre{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: clamp(3px, 5%, 10px);
    color: rgb(0, 0, 155);
    font-size: clamp(22px, 4vw, 46px);
    font-family: 'Arial Black';
}

.carrusel{
    max-height: 500px;
    min-height: 250px;
    height: 100%;
}

.logo{
 border-radius: 100%;
}

.datos{
    font-size: clamp(16px, 4vw, 26px);
    margin: clamp(10px, 5%, 35px)
}

.colage{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 2.5%;
    padding-bottom: 2.5%;
}

.colage img{
    min-height: 250px;
    max-width: 450px;
    height: 50%;
    min-width: 350px;
    max-width: 550px;
    width: 50%;
}

.actas{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: clamp(15px, 5%, 30px);
    padding-top: 2.5%;
    padding-bottom: 2.5%;
}

.actas img{
    min-height: 350px;
    max-height: 550px;
    height: 50%;
    min-width: 250px;
    max-width: 450px;
    width: 50%;
}

.contactos{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 2.5%;
    padding-top: 2.5%;
}

.contactos img{
    min-width: 35px;
    max-width: 80px;
    width: 100%;
    border-radius: 100%;
    display: flex;
    align-items: center;
}

.contactos iframe{
    display: flex;
    align-items: center;
}
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

/*Video de la Orquesta*/
#contenedorVideo {
    max-width: 800px;
    margin: 20px auto; 
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#miVideo {
    width: 100%;
    height: auto;
    display: block; 
}

#botonReproducir {
    /* Dimensiones y relleno */
    padding: 12px 25px; 
    
    /* Forma y suavidad */
    border: none;
    border-radius: 8px; /* Bordes redondeados para un look más suave */
    
    /* Colores (¡Aquí puedes modificar el color principal!) */
    background-color: rgb(75, 150, 255); /* Color principal (azul, puedes cambiarlo) */
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.1s ease;
    cursor: pointer;    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#botonReproducir:hover {
    background-color: rgb(75, 150, 255);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

#botonReproducir:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*Tarjetas de contactos*/
.contactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    width: 90%; 
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex; 
    align-items: flex-start;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 50%;
}


.contact-info {
    flex-grow: 1;
}

.contact-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}

.contact-detail {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.contact-link {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    background-color: #28a745; 
    color: white;
    border: 1px solid #28a745;
    transition: background-color 0.2s;
}

.contact-link:hover {
    background-color: #1e7e34;
    border-color: #1c7430;
}

@media (max-width: 600px) {
    .contactos-grid {
        grid-template-columns: 1fr;
        padding: 20px 10px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-title {
        font-size: 1.1rem;
    }

    .contact-detail {
        font-size: 0.9rem;
    }
}