/* ===========================
   BENEFICIOS CLAVE 
   =========================== */

#inicio_beneficios_claves {
    position: relative;
    padding: 100px 0;
    background-image: url('../../assets/img/dark-topographic-map.jpg');
    background-size: cover;
    background-position: center;
    background-color: #000; 
    color: #ffffff;
    overflow: hidden;
}

/* CAPA BLANCA TRASLÚCIDA (Intermedia) */
#inicio_beneficios_claves::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(#343434, 0.5); 
    z-index: 1;
}

#inicio_beneficios_claves::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #000000, transparent);
    z-index: 2;
}

#inicio_beneficios_claves .container {
    position: relative;
    z-index: 3; 
    max-width: 1600px; 
    width: 95%; 
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 100px;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 90px; 
    justify-items: center;
    text-align: center;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 80px;
    min-height: 3em;
    color: #ffffff;
    text-align: center;
}

.benefit-icon {
    width: 160px; 
    height: 160px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon img {
    width: 100%;
    height: auto;

}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
    max-width: 220px;
    text-align: center;
}

/* Responsivo */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-title { font-size: 2rem; }
}