/* ==========================================
   SOBRE NOSOTROS
========================================== */

.sobre-nosotros {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc,
            #eef4ff
        );

}

/* ==========================================
   CONTENIDO
========================================== */

.sobre-contenido {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}

/* ==========================================
   IMAGEN
========================================== */

.sobre-imagen {

    position: relative;

}

.sobre-imagen-glass {

    position: relative;

    padding: 15px;

    border-radius: 40px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(25px);

    border: 1px solid rgba(255,255,255,.8);

    box-shadow:
        0 35px 80px rgba(15,23,42,.12);

}

.sobre-imagen-glass img {

    width: 100%;

    height: 600px;

    object-fit: cover;

    border-radius: 28px;

}

/* ==========================================
   BADGE
========================================== */

.sobre-badge {

    position: absolute;

    left: -25px;

    bottom: 30px;

    padding: 18px 28px;

    border-radius: 20px;

    background: rgba(255,255,255,.85);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 40px rgba(15,23,42,.15);

}

.sobre-badge span {

    font-size: 1.2rem;

    font-weight: 800;

    color: #2563eb;

}

/* ==========================================
   CÍRCULOS
========================================== */

.sobre-circulo {

    position: absolute;

    border-radius: 50%;

    z-index: -1;

}

.sobre-circulo.circulo-a {

    width: 220px;

    height: 220px;

    background: #2563eb;

    opacity: .12;

    filter: blur(40px);

    top: -60px;

    left: -70px;

}

.sobre-circulo.circulo-b {

    width: 180px;

    height: 180px;

    background: #7c3aed;

    opacity: .15;

    filter: blur(45px);

    right: -60px;

    bottom: -60px;

}

/* ==========================================
   TEXTO
========================================== */

.sobre-tag {

    display: inline-flex;

    padding: 10px 22px;

    border-radius: 999px;

    background: white;

    color: #2563eb;

    font-weight: 700;

    margin-bottom: 25px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

}

.sobre-texto h2 {

    font-size: clamp(2.2rem,4vw,3.8rem);

    line-height: 1.1;

    color: #0f172a;

    margin-bottom: 30px;

}

.sobre-texto p {

    color: #64748b;

    line-height: 1.9;

    font-size: 1.05rem;

    margin-bottom: 22px;

}

/* ==========================================
   LISTA
========================================== */

.sobre-lista {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 18px;

    margin: 45px 0;

}

.sobre-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.8);

    box-shadow:
        0 12px 30px rgba(15,23,42,.05);

}

.check {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );

    color: white;

    font-weight: bold;

    flex-shrink: 0;

}

.sobre-item span:last-child {

    color: #475569;

    font-weight: 600;

    line-height: 1.4;

}

/* ==========================================
   ESTADÍSTICAS
========================================== */

.sobre-estadisticas {

    display: flex;

    gap: 20px;

    margin-bottom: 45px;

}

.sobre-card {

    flex: 1;

    padding: 24px;

    text-align: center;

    border-radius: 24px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.8);

    box-shadow:
        0 20px 40px rgba(15,23,42,.08);

}

.sobre-card strong {

    display: block;

    font-size: 2.4rem;

    color: #2563eb;

    margin-bottom: 8px;

}

.sobre-card span {

    color: #64748b;

    font-size: .95rem;

}

/* ==========================================
   BOTÓN
========================================== */

.sobre-boton {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 17px 36px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;

    color: white;

    background: linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );

    box-shadow:
        0 20px 40px rgba(37,99,235,.30);

    transition: .35s;

}

.sobre-boton:hover {

    transform: translateY(-5px);

    box-shadow:
        0 30px 55px rgba(37,99,235,.35);

}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .sobre-contenido {

        grid-template-columns: 1fr;

        gap: 60px;

    }

    .sobre-texto {

        text-align: center;

    }

    .sobre-lista {

        grid-template-columns: 1fr;

    }

    .sobre-estadisticas {

        justify-content: center;

    }

    .sobre-imagen {

        max-width: 650px;

        margin: auto;

    }

}

/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 768px) {

    .sobre-nosotros {

        padding: 80px 0;

    }

    .sobre-imagen-glass img {

        height: 380px;

    }

    .sobre-badge {

        left: 15px;

        bottom: 15px;

        padding: 14px 22px;

    }

    .sobre-estadisticas {

        flex-direction: column;

    }

    .sobre-card {

        width: 100%;

    }

    .sobre-texto h2 {

        font-size: 2.3rem;

    }

}