/*
=========================================
NOSOTROS V2 - MAIMEX
=========================================
*/

.about-section{

    position:relative;

    padding:140px 0;

    background:#FFF;

    overflow:hidden;

}

/*=========================================
TEXTOS
=========================================*/

.section-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(108,59,255,.08);

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.section-title{

    font-family:"Poppins",sans-serif;

    font-size:clamp(38px,4vw,56px);

    line-height:1.18;

    color:var(--primary);

    margin-bottom:28px;

    max-width:680px;

}

.section-description{

    font-size:18px;

    color:var(--gray);

    line-height:1.9;

    margin-bottom:24px;

}

.about-section p{

    color:var(--gray);

    line-height:1.9;

}

/*=========================================
IMAGEN
=========================================*/

.about-image-wrapper{

    position:relative;

    width:100%;

    max-width:480px;

    margin:auto;

}

/* Figura decorativa */

.about-shape{

    position:absolute;

    width:320px;

    height:320px;

    background:linear-gradient(
        135deg,
        rgba(108,59,255,.18),
        rgba(108,59,255,.05)
    );

    border-radius:40px;

    left:-40px;

    top:40px;

    z-index:1;

}

/* Imagen */

.about-image{

    position:relative;

    z-index:2;

    border-radius:32px;

    overflow:hidden;

    box-shadow:0 30px 70px rgba(15,23,42,.15);

}

.about-image img{

    width:100%;

    display:block;

    transition:transform .7s ease;

}

.about-image:hover img{

    transform:scale(1.05);

}

/*=========================================
TARJETA
=========================================*/

.about-card{

    position:absolute;

    right:-35px;

    bottom:40px;

    width:280px;

    padding:28px;

    background:#FFF;

    border-radius:24px;

    box-shadow:0 25px 60px rgba(15,23,42,.15);

    z-index:3;

}

.stars{

    font-size:22px;

    color:#FFC107;

    margin-bottom:16px;

}

.about-card h4{

    font-size:22px;

    color:var(--primary);

    line-height:1.4;

    margin-bottom:14px;

}

.about-card p{

    font-size:15px;

    color:var(--gray);

    margin:0;

    line-height:1.7;

}

/*=========================================
FEATURES
=========================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:38px 0;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:14px;

    color:var(--primary);

    font-weight:500;

}

.feature-item i{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(108,59,255,.10);

    color:var(--secondary);

    flex-shrink:0;

}

/*=========================================
BOTONES
=========================================*/

.about-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.btn-outline-dark{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 34px;

    border:2px solid var(--primary);

    border-radius:50px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.btn-outline-dark:hover{

    background:var(--primary);

    color:#FFF;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .about-section{

        padding:100px 0;

    }

    .about-image-wrapper{

        max-width:420px;

    }

    .about-card{

        position:relative;

        right:auto;

        bottom:auto;

        width:100%;

        margin-top:-30px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:767px){

    .about-section{

        padding:80px 0;

    }

    .section-title{

        font-size:34px;

    }

    .about-buttons{

        flex-direction:column;

    }

    .btn-primary,

    .btn-outline-dark{

        width:100%;

    }

    .about-shape{

        width:220px;

        height:220px;

        left:-20px;

    }

}