/* ======================================================
   ELEGIRNOS – BRANDING ALLENDE
====================================================== */

.eligenos-ca {
    background: linear-gradient(
        to bottom,
        #0b2c4d,
        #0f3a63
    );
    padding: 90px 0;
}

/* HEADER */
.eligenos-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.eligenos-header p {
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto;
}

/* CARD */
.eligenos-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;

    border: 1px solid rgba(255,255,255,0.1);

    transition: all .3s ease;
    height: 100%;

    opacity: 0;
    transform: translateY(40px);
}

/* ANIMACIÓN */
.eligenos-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER */
.eligenos-card:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* ICON */
.eligenos-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: rgba(245, 158, 11, 0.15); /* naranja suave */
    color: #f59e0b;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    margin-bottom: 15px;

    transition: all .3s ease;
}

/* ICON HOVER */
.eligenos-card:hover .icon {
    background: #f59e0b;
    color: #0b2c4d;
    transform: scale(1.1);
}

/* TITULO */
.eligenos-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b2c4d;
}

/* TEXTO */
.eligenos-card p {
    font-size: 0.95rem;
    color: #475569;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .eligenos-header h2 {
        font-size: 28px;
    }
}