/*==================================================
    NOSOTROS - SMAR
==================================================*/

/*=========================================
    SECCIÓN
=========================================*/

.about{
    padding:60px 0 100px;
    background:#F8FAFC;
}

/*=========================================
    ENCABEZADO
=========================================*/

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-badge{

    display:inline-flex;
    align-items:center;

    padding:8px 18px;

    border-radius:50px;

    background:#EAF4FF;

    color:#0071BC;

    font-size:.95rem;

    font-weight:700;

    margin-bottom:18px;
}

.section-title{

    font-size:2.7rem;

    font-weight:800;

    color:#0A2E57;

    margin-bottom:20px;
}

.section-subtitle{

    font-size:1.1rem;

    line-height:1.8;

    color:#5B6777;
}

/*==================================================
    CONTENIDO NOSOTROS
==================================================*/

.about-content{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;

    margin-top:70px;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:all .45s ease;

}

.about-image img:hover{

    transform:scale(1.03);

}


.about-text{

    max-width:100%;

    text-align:left;

}

.about-text h3{

    font-size:2rem;

    color:#0A2E57;

    margin-bottom:25px;
}

.about-text p{

    font-size:1.08rem;

    line-height:1.9;

    color:#4F5B67;

    margin-bottom:20px;

    text-align:justify;

}

.about-text a{

    color:#0071BC;

    font-weight:700;

    text-decoration:none;
}

.about-text a:hover{

    text-decoration:underline;
}

.about-list{

    list-style:none;

    padding:0;

    margin:30px 0 0;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-size:1.08rem;

    font-weight:600;

    color:#2F3B4A;

}

.about-list li i{

    width:34px;

    height:34px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0071BC;

    color:#FFFFFF;

    font-size:15px;

    flex-shrink:0;

    box-shadow:0 8px 20px rgba(0,113,188,.20);

}
/*=========================================
    TARJETAS
=========================================*/

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:36px;

    margin-top:70px;

    align-items:stretch;

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.about-card h3{

    color:#0A2E57;

    font-size:1.5rem;

    margin-bottom:18px;
}

.about-card p{

    line-height:1.8;

    color:#5B6777;
}

/*==================================================
    SLIDER IMÁGENES NOSOTROS
==================================================*/

.about-slider{

    position:relative;

    width:100%;

    height:520px;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.about-slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1.5s ease;

}

.about-slide.active{

    opacity:1;

    z-index:2;

}

.about-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    animation:aboutZoom 10s ease-in-out infinite alternate;

}

.about-badge{

    position:absolute;

    left:20px;

    bottom:20px;

    z-index:5;

    background:rgba(10,46,87,.85);

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    backdrop-filter:blur(10px);

    font-weight:600;

    font-size:.95rem;

}

.about-badge i{

    margin-right:8px;

    color:#6BCB4A;

}

@keyframes aboutZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

/*==================================================
    TARJETAS PREMIUM
==================================================*/

.about-card{
    position:relative;

    background:#FFFFFF;

    padding:34px;

    min-height:430px;

    border-radius:24px;

    overflow:hidden;

    transition:transform .35s ease, box-shadow .35s ease;

    box-shadow:0 12px 35px rgba(15,35,65,.08);

    border:1px solid rgba(15,35,65,.06);

}

.about-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.14);

}

.about-card::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:#0071BC;

    transition:.4s;

}

.about-card:hover::after{

    width:100%;

}

/* ICONO */

.about-card-icon{
    width:68px;
    height:68px;
    border-radius:18px;

    background:#D96832;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    box-shadow:0 8px 20px rgba(217,104,50,.20);
}

.about-card-icon i{
    font-size:26px;
    color:#FFFFFF;
}

.about-card h3{
    font-family:'Montserrat',sans-serif;

    font-size:1.7rem;

    font-weight:800;

    color:#0A2E57;

    margin:0 0 22px;

    line-height:1.25;
}

.about-card p{
    font-family:'Montserrat',sans-serif;
    font-size:0.98rem;
    font-weight:400;
    line-height:1.8;
    color:#5B6777;
    margin:0;
}

/*==================================================
    RESPONSIVE - NOSOTROS
==================================================*/

@media (max-width:900px){

    /* ENCABEZADO */

    .about{
        padding:50px 0 70px;
    }

    .section-header{
        max-width:100%;
        margin:0 auto 40px;
        padding:0 5px;
    }

    .section-title{
        font-size:2rem;
        line-height:1.2;
        margin-bottom:15px;
    }

    .section-subtitle{
        font-size:1rem;
        line-height:1.6;
    }


    /* CONTENIDO PRINCIPAL */

    .about-content{
        grid-template-columns:1fr;
        gap:35px;
        margin-top:40px;
    }


    /* IMAGEN */

    .about-image img{
        height:300px;
        border-radius:18px;
    }

    .about-slider{
        height:300px;
        border-radius:18px;
    }


    /* TEXTO */

    .about-text{
        width:100%;
        text-align:left;
    }

    .about-text h3{
        font-size:1.65rem;
        margin-bottom:18px;
    }

    .about-text p{
        font-size:1rem;
        line-height:1.7;
        text-align:left;
    }


    /* LISTA */

    .about-list{
        margin-top:25px;
    }

    .about-list li{
        gap:12px;
        margin-bottom:14px;
        font-size:1rem;
        align-items:flex-start;
    }

    .about-list li i{
        width:32px;
        height:32px;
        min-width:32px;
        font-size:14px;
    }


    /* TARJETAS MISIÓN / VISIÓN / VALORES */

    .about-grid{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:40px;
    }

    .about-card{
        min-height:auto;
        padding:28px 24px;
        border-radius:20px;
    }

    .about-card-icon{
        width:58px;
        height:58px;
        margin-bottom:20px;
    }

    .about-card-icon i{
        font-size:23px;
    }

    .about-card h3{
        font-size:1.45rem;
        margin-bottom:15px;
    }

    .about-card p{
        font-size:.95rem;
        line-height:1.7;
    }


    /* BADGE SOBRE IMAGEN */

    .about-badge{
        left:15px;
        bottom:15px;
        padding:8px 14px;
        font-size:.85rem;
    }

}