/* ===== SECCIÓN SOBRE NOSOTROS ===== */
.about-section {
    display: flex;
    height: 100vh;
    background-color: #0b2c3d;
    color: white;
    overflow: hidden;
}

/* ===== LADO IZQUIERDO (TEXTO GRANDE REPETIDO) ===== */
.about-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

/* TEXTO REPETIDO */
.about-left h1 {
    font-size: 60px;
    font-weight: 900;
    opacity: 0.08;
    line-height: 70px;
}

/* TEXTO DESTACADO */
.about-left h1.highlight {
    opacity: 1;
    color: white;
}

/* ===== LADO DERECHO ===== */
.about-right {
    width: 60%;
    display: flex;
    align-items: center;
    padding: 80px;
}

/* TEXTO */
.about-text {
    max-width: 600px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #d1d5db;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        height: auto;
    }

    .about-left {
        width: 100%;
        padding: 40px;
    }

    .about-right {
        width: 100%;
        padding: 40px;
    }
}