.about-us{
    max-width:1100px;
    margin:auto;
    padding: 120px 20px;
    font-family:system-ui, -apple-system, sans-serif;
    line-height:1.6;
}

/* ========================= */
/* TITULO */
/* ========================= */

.about-header{
    text-align:center;
    margin-bottom:60px;
}

.about-header h1 {
    text-align: center;
}

.about-intro{
    font-size:18px;
    max-width:750px;
    margin:auto;
    color:#324b48;
}

/* ========================= */
/* SECCIONES */
/* ========================= */

.about-section{
    margin-bottom:60px;
}

.about-section h2{
    font-size: 42px;
    margin-bottom:30px;
    text-align:center;
}

.about-section p{
    font-size:17px;
    color:#444;
    margin-bottom:20px;
}

.about-highlight{
    font-size:20px;
    text-align:center;
    font-weight:600;
    color:#324b48;
}

/* ========================= */
/* DESTACADO */
/* ========================= */

.destacado{
    color:#f54e009f;
    font-weight:700;
}

.marca{
    font-size:24px;
    letter-spacing:2px;
    color:#0d1413;
}

/* ========================= */
/* FILOSOFIA */
/* ========================= */

.about-values{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:25px;
    margin-top:20px;
}

.value-card{
    padding:25px;
    border-radius:12px;

    background:#f1f4f4;

    border:1px solid rgba(0,0,0,0.04);

    transition:all .25s ease;
}

.value-card h3{
    margin-bottom:10px;
    font-size:18px;
    color:#0d1413;
}

.value-card p{
    font-size:15px;
    color:#555;
}

/* ========================= */
/* HOVER */
/* ========================= */

.value-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* ========================= */
/* FUTURO */
/* ========================= */

.future{
    text-align:center;
}

.about-final{
    font-size:20px;
    font-weight:500;
    margin-top:25px;
    color:#324b48;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width:768px){

    .about-header h1{
        font-size:32px;
    }

    .about-intro{
        font-size:16px;
    }

    .about-section h2{
        font-size:24px;
    }

}