/* =====================================
   HERO
===================================== */

.nosotros-hero{

    min-height:50vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 20px 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.55)
    ),
    url('../imagenes/banners/banner-abaot.png')
    center center/cover no-repeat;
}

.nosotros-hero-content{

    max-width:850px;

    color:white;
}

.nosotros-hero-content span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;
}

.nosotros-hero-content h1{

    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:800;

    margin-bottom:20px;
}

.nosotros-hero-content p{

    font-size:1.1rem;

    line-height:1.8;
}

/* =====================================
   ABOUT COMPANY
===================================== */

.about-company{

    display:flex;

    align-items:center;

    gap:60px;

    padding:90px 8%;

    background:white;
}

.about-image{

    flex:1;
}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);
}

.about-content{

    flex:1;
}

.about-content h2{

    font-size:2.5rem;

    margin-bottom:25px;
}

.about-content p{

    line-height:1.9;

    color:#555;

    margin-bottom:20px;
}

.about-btn{

    display:inline-block;

    text-decoration:none;

    background:#00a63f;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.about-btn:hover{

    background:#008535;
}

/* =====================================
   MISION Y VISION
===================================== */

.mision-vision{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

    padding:90px 8%;

    background:#f8f9fa;
}

.mv-card{

    background:white;

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

    transition:.3s;
}

.mv-card:hover{

    transform:translateY(-8px);
}

.mv-icon{

    width:80px;
    height:80px;

    background:#e60012;

    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:2rem;

    margin:auto auto 20px;
}

.mv-card h3{

    margin-bottom:15px;
}

.mv-card p{

    color:#666;

    line-height:1.8;
}

/* =====================================
   VALORES
===================================== */

.valores{

    padding:90px 8%;
}

.valores h2{

    text-align:center;

    margin-bottom:50px;

    font-size:2.5rem;
}

.valores-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.valor{

    background:white;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.valor h3{

    color:#e60012;

    margin-bottom:15px;
}

/* =====================================
   CTA
===================================== */

.cta-nosotros{

    background:#111;

    color:white;

    text-align:center;

    padding:90px 8%;
}

.cta-nosotros h2{

    font-size:2.5rem;

    margin-bottom:20px;
}

.cta-nosotros p{

    max-width:700px;

    margin:auto;

    line-height:1.8;

    margin-bottom:25px;
}

.cta-nosotros a{

    display:inline-block;

    text-decoration:none;

    background:#00a63f;

    color:white;

    padding:15px 30px;

    border-radius:50px;

    font-weight:700;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .about-company{

        flex-direction:column;
    }

    .mision-vision{

        grid-template-columns:1fr;
    }

    .valores-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .nosotros-hero h1{

        font-size:2.2rem;
    }

    .about-company{

        padding:70px 6%;
    }

    .about-content{

        text-align:center;
    }

    .valores-grid{

        grid-template-columns:1fr;
    }
}

@media(max-width:480px){

    .nosotros-hero h1{

        font-size:1.8rem;
    }

    .about-content h2{

        font-size:2rem;
    }
}