#texto-sobre-nosotros {
    flex: 1;
    font-size: 1.2em;
    padding-right: 20px;
}

#imagen-sobre-nosotros {
    flex: 1;
    max-width: 100%;
    height: auto;
    object-fit: contain; 
    padding-left: 0px; 
    display: flex;
    
}

#imagen-sobre-nosotros,
.imagen-trabajo {
    border: 3px solid white; 
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
    border-radius: 5px; 
    justify-content: center;
}


.cinta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0px;
}

.texto-cinta {
    margin: 10px 0;
    padding: 10px;
    border: 2px solid white;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center; 
}

.texto-cinta:hover {
    cursor: pointer;
    background-color: #f0f0f0;
    color: #000000;
    font-weight: bold;
}


/* Sección Sobre Nosotros */
.sobre-nosotros {
    background-color: #3333338d;
    color: white; 
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Título */
.titulo-sobre-nosotros {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Cinta con Misión, Visión y Filosofía */
.cinta-textos {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.texto-cinta {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 1.4em;
    border-right: 1px solid #555; 
    margin: 10px 10px;
}

.texto-cinta:last-child {
    border-right: none; 
}

/* Contenido: Imagen y texto */
.contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.imagen-lateral img {
    width: 500px; /* Ancho de la imagen */
    height: auto;
    margin-right: 50px;
}

.texto-descripcion {
    flex: 1;
    text-align: left;
    font-size: 1.5em;
    max-width: 600px;
}

/* Resalta el texto seleccionado */
.texto-cinta.selected {
    background-color: #f0f0f0; 
    color: #000000; 
    font-weight: bold;
}




/* Responsivo */
@media (max-width: 768px) {
    .contenido {
        flex-direction: column; 
    }

    .imagen-lateral {
        margin-bottom: 20px;
    }

    .cinta-textos {
        flex-direction: column; 
    }

    .texto-cinta {
        border-right: none;
        border-bottom: 1px solid #555;
    }

    .texto-cinta:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    #sobre-nosotros {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    #texto-sobre-nosotros {
        font-size: 1.1em;
        padding-right: 0;
        margin-bottom: 20px;
    }

    #imagen-sobre-nosotros {
        max-width: 90%;
        padding-left: 0px; 
        display: flex;
        justify-content: center;
    }

    #imagen-sobre-nosotros img {
        border: 3px solid white; 
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
        border-radius: 5px;
        justify-content: center;
    }

    .imagen-lateral img {
        width: 500px;
        height: auto;
        margin-left: 20px;
    }

    .cinta {
        flex-direction: column;
        margin: 10px 0;
    }

    .texto-cinta {
        padding: 8px;
        font-size: 1em;
        margin: 5px 0;
    }

    .titulo-sobre-nosotros {
        font-size: 2em;
        margin-bottom: 15px;
    }
}
