/* --- IMAGEN QUIENES SOMOS (HERO) --- */
.img-whoweare {
    margin: -2rem -5rem 1rem -5rem;
    width: calc(100% + 10rem);
    height: 30rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(255,255,255,1)), 
                url("../img/who_we_are.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
}

/* --- EFECTO OLA  */
.img-whoweare::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,160L80,176C160,192,320,224,480,213.3C640,203,800,149,960,138.7C1120,128,1280,160,1360,176L1440,192L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>');
    background-size: cover;
}

/* --- CAJA NUESTRA HISTORIA --- */
.ourstory {
    position: relative;
    z-index: 10;
    width: 35%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    margin-top: -12rem;
    margin-left: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.ourstory:hover {
    transform: translateY(-5px);
}

.ourstory b {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #83bebe; /* Color de marca en el borde */
    width: fit-content;
}

.ourstory strong {
    color: #83bebe;
    font-weight: 700;
}

.quienessomos {
    display: flex; 
    flex-wrap: wrap;
    flex-direction: row; 
    justify-content: center; 
    gap: 40px; 
    margin: 4rem -5rem 0 -5rem;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    border-top-left-radius: 90px;
    border-top-right-radius: 90px;
    box-shadow: inset 0 10px 20px rgba(0,0,0,0.02);
    background: linear-gradient(#83bebe, #e5f7f6);
}

.quienessomos-propiedad {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.8);
}

.quienessomos-propiedad:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: #ffffff;
}

.qs_number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0052cc;
    margin: 0;
    padding: 0;
    text-shadow: 2px 2px 0px rgba(0, 82, 204, 0.1);
}

.quienessomos-propiedad p:last-child {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 5px;/
}

span {
    font-weight: 700;
    color: var(--color-secondary);
    text-shadow: 0 0 20px rgba(114, 175, 230, 0.4);
}

.qs_title{
    font-size: 4rem;
    text-align: center;
    width: 100%;
    margin: 2rem 0;
}



/* === COMISIÓN ACTUAL === */

.comisiones{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.comision_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: .1rem auto 2rem auto;
    width: 100%;
    height: 10rem;
    padding: 1rem;
    background: #83BEBE;
    background: radial-gradient(circle,rgba(131, 190, 190, 1) 0%, rgba(93, 150, 150, 1) 100%);
    border-radius: 10px;
    border: 1px solid rgb(117, 170, 163);
}

.comision_box:hover{
    transform: scale(0.98);
}

.comision_box:hover b{
    transform: scale(1.05);
}

.comision_desc{
    text-align: center;
    color: rgb(92, 92, 92);
    max-width: 70%;
}

.comision_box b{
    font-size: 3rem;
    color: green;
}


.qs_security_boxes{
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 3rem auto;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.qs_security_box{
    width: 20%;
    height: 20rem;
    box-shadow: 0 4px 6px rgb(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 3rem;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
}

.qs_security_box i{
    font-size: 3rem;
}

.qs_security_box:hover{
    transform: scale(1.05);
    border: 1px solid #83bebe;
}

.qs_security_box:hover i{
    transform: rotate(3deg) scale(1.02);
}

/* --- RESPONSIVE --- */
@media (max-width: 1050px) {
    .ourstory {
        width: 80%;
        margin-top: -8rem;
        margin-left: auto;
        margin-right: auto;
    }

    .quienessomos {
        gap: 20px;
        padding: 4rem 1rem;
        flex-direction: column;
        margin: 2rem 0;
    }
    .quienessomos-propiedad {
        width: 100%;
    }

    .comisiones{
        flex-direction: column;
    }
    
    .comision_box{
        width: 100%;
    }

    .qs_security_boxes{
        flex-direction: column;
    }

    .qs_security_box{
        width: 70%;
    }
}

@media (max-width: 600px) {
    .img-whoweare {
        width: calc(100% + 4rem);
        margin: -2rem -2rem 1rem -2rem;
        height: 20rem;
    }
    
    .ourstory {
        width: 90%;
        padding: 1.5rem;
        margin-top: -5rem;
    }
}