main
{
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.container-seccion{
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    max-width: 1200px;
    padding: clamp(1rem, 3vw, 3rem);
    margin: clamp(1rem,2vw, 3rem) 0px;

    background: var(--color--secondary);
    border-radius: 16px;
    
}

.header-section {
    
    margin-bottom: clamp(2rem, 4vw, 4rem);

    text-align: center;
}

.header-section::after {
    content: "";
    display: block;

    width: 60px;
    height: 4px;

    background: var(--color--sky-blue);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.header-section h1 {
    line-height: 1.2;
    margin: 0 auto;

    text-wrap: balance;
    overflow-wrap: break-word;

    font-size: var(--step-3);
    font-family: var(--letter--type);
    font-weight: 800;
    color: var(--color--principal);
}

.header-section h2 {

    margin-top: 0.5rem;

    font-size: var(--step-0);
    font-weight: 400;

    color: var(--color--letter-black);
    opacity: 0.7;
}

.box-dirigentes{

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    height: auto;
    width: 90%;
    gap: clamp(1rem, 2vw , 3.5rem );
    margin: clamp(1rem, 2vh, 3rem) 0px;

    text-align: center;
    justify-content: center;
    

}

.cards {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: clamp(1rem,2vh,3rem);
    padding: clamp(1rem,2vh,2rem);
    min-height: clamp(10rem,15vh,18rem);

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 12px;
    background-color: var(--color--letter-white);
    border: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(4px);


    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cards::after {
    content: "";
    display: block;

    width: 40px;
    height: 3px;

    background: var(--color--principal);
    margin-top: 10px;
}



.informaction-cards h3{
    margin: 0px clamp(0.2rem,0.4vw,0.8rem);
    margin-top: 0.5rem;

    font-size: var(--step-1);
    font-family: var(--letter--type);
    font-weight: 600;
    text-transform: uppercase;
    
    color: var(--color--principal);
}

.cards:hover h3 {
    color: var(--color--sky-blue);
}

.informaction-cards p{
    margin-top: clamp(0.4rem, 0.7vh, 1rem);

    font-size: var(--step-0);
    font-weight: 300;

    opacity: 0.7;

    color: var(--color--principal);
}

.cards img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid var(--color--principal);
}


@media (min-width: 1000px) {

.cards:hover,
.cards:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

}