/* CONTENEDOR PRINCIPAL */
.adhesiones-destacadas-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    margin-top: 20px;
}

/* TÍTULO */
.adhesiones-titulo {
    font-size: 40px;
    color: #ffd27f;
    text-align: center;
    margin-bottom: 30px;
}

/* INTRO */
.adhesiones-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #e6e6e6;
}


/* GRID DE ADHESIONES */
#lista-destacadas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* TARJETA */
.adhesion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffb85c;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s ease;
}

/* LOGO */
.adhesion-item img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

/* NOMBRE */
.adhesion-item h3 {
    color: #ffd27f;
    font-size: 22px;
    margin-bottom: 10px;
}

/* HOVER */
.adhesion-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.adhesion-item h3 {
    color: #ffd27f;
    font-size: 22px;
    margin-bottom: 8px;
}

.adhesion-item .cargo {
    color: #ffb85c;
    font-size: 16px;
    font-style: italic;
    margin-bottom: 10px;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    #lista-destacadas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #lista-destacadas {
        grid-template-columns: 1fr;
    }
}
