.sobre-nosotros {
    background-color: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-sobre {
    display: flex;
    align-items: stretch;
    /* 🔥 asegura que ambos ocupen mismo alto */
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    flex-wrap: wrap;
}

.texto-sobre {
    flex: 1;
    min-width: 300px;
    color: #000;
    position: relative;
    padding: 20px;
    border-left: 5px solid #ffdd00;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🔥 centra verticalmente el texto */
}

.texto-sobre h2 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffdd00;
    margin-bottom: 8px;
}

.texto-sobre h3 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.texto-sobre p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.texto-sobre strong {
    color: #ffdd00;
}

.imagen-sobre {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagen-sobre img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}