/* =========================
   VALORES
========================= */

.valores-section{
    padding: 65px 0;
    background: #ffffff;
}

.section-header{
    text-align: center;
    margin-bottom: 30px;
}

.section-tag{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-modern{
    font-size: 42px;
    font-weight: 800;
    color: var(--color-heading);
    line-height: 1.2;
}

.valores-grid{
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(209px, 1fr));
    gap: 18px;
}



.valor-card{
    background: #f8fafc;
    border-radius: 28px;
    padding: 10px 10px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #e2e8f0;
}

.valor-card:hover{
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

.valor-img{
    width: 110px;
    height: 110px;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-img img{
    width: 65%;
    object-fit: contain;
}

.valor-card h3{
    font-size: 22px;
    font-weight: 700;
    /* color:#FFB426; */
}

/* RESPONSIVE */

@media(max-width:768px){

    .valores-section{
        padding: 70px 0;
    }

    .section-title-modern{
        font-size: 32px;
    }

    .valor-card{
        padding: 5px 5px;
    }

}

