/* ==========================================================
   REBORN WEB 2026
   NOSOTROS
   ========================================================== */

.nosotros-hero{
    width:100%;
    overflow:hidden;
    background:#fff;
}

.nosotros-slider{
    position:relative;
    width:100%;
}

.slide{
    display:none;
}

.slide.activo{
    display:block;
}

.slide img{
    display:block;
    width:100%;
    height:auto;
}

.slider-prev,
.slider-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:26px;
    cursor:pointer;
    transition:.25s;
    z-index:20;
}

.slider-prev:hover,
.slider-next:hover{
    background:rgba(0,0,0,.7);
}

.slider-prev{
    left:20px;
}

.slider-next{
    right:20px;
}

.slider-indicadores{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
}

.slider-indicadores button{
    width:12px;
    height:12px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
}

.slider-indicadores button.activo{
    background:#fff;
}

.nosotros{
    padding:70px 20px;
    background:#fff;
}

.nosotros-grid{
    display:grid;
    grid-template-columns:512px 1fr;
    gap:60px;
    align-items:center;
}

.nosotros-imagen img{
    width:100%;
    border-radius:6px;
}

.nosotros-texto h1{
    margin-bottom:28px;
    font-family:"Questrial",sans-serif;
    font-size:42px;
    color:#343f64;
}

.nosotros-texto p{
    margin-bottom:22px;
    font-family:"Questrial",sans-serif;
    font-size:18px;
    line-height:1.4;
    color:#555;
}

.atencion{
    padding:70px 20px 40px;
    background:#f5f5f5;
}

.atencion-texto{
    max-width:100%;
}

.atencion-texto h2{
    margin-bottom:26px;
    font-family:"Questrial",sans-serif;
    font-size:40px;
    color:#18a85d;
}

.atencion-texto p{
    margin-bottom:18px;
    font-family:"Questrial",sans-serif;
    font-size:18px;
    line-height:1.4;
    color:#555;
}

.valores{
    padding:30px 20px 80px;
    background:#f5f5f5;
}

.valores-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:45px;
}

.valor{
    text-align:center;
}

.valor img{
    width:100%;
    max-width:280px;
    margin:0 auto 25px;
    display:block;
    border-radius:12px;
}

.valor h3{
    margin-bottom:20px;
    font-family:"Questrial",sans-serif;
    font-size:24px;
    color:#1bae68;
}

.valor p{
    font-family:"Questrial",sans-serif;
    font-size:17px;
    line-height:1.4;
    color:#666;
    text-align:justify;
}

.nosotros-texto p,
.atencion-texto p,
.valor p{
    text-align:justify;
}

@media(max-width:900px){

.nosotros-grid,
.valores-grid{
    grid-template-columns:1fr;
}

.nosotros-texto,
.atencion-texto,
.valor{
    text-align:center;
}

.slider-prev,
.slider-next{
    width:40px;
    height:40px;
}

.nosotros-texto h1,
.atencion-texto h2{
    font-size:34px;
}

}