/* ===== HERO WAVE (sin logo, solo la ola) ===== */
.page-hero {
    position: relative;
    background-color: #ffffff;
    height: 90px;
    overflow: hidden;
}

.page-hero .hero-wave {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.page-hero .hero-wave img {
    height: 100%;
    width: auto;
    display: block;
}

/* ===== MAIN ===== */
.empresa-main {
    padding: 60px 0 80px;
    background-color: transparent;
}

/* ===== QUIÉNES SOMOS ===== */
.quienes-somos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.qs-logo {
    flex: 0 0 auto;
    width: 260px;
    text-align: center;
}

.qs-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.qs-texto {
    flex: 1;
}

.qs-texto p {
    font-size: 16px;
    line-height: 1.85;
    color: #333333;
    margin-bottom: 22px;
}

.qs-texto p:last-child {
    margin-bottom: 0;
}

/* ===== MISIÓN / VISIÓN ===== */
.mv-section {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mv-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: capitalize;
    margin-bottom: 14px;
}

.mv-content p {
    font-size: 15px;
    line-height: 1.85;
    color: #444444;
    padding-left: 20px;
    border-left: 3px solid var(--color-accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .quienes-somos {
        flex-direction: column;
        gap: 30px;
    }

    .qs-logo {
        width: 200px;
        margin: 0 auto;
    }

    .mv-title {
        font-size: 22px;
    }

    .mv-content p {
        padding-left: 14px;
    }
}
