/* ====== ESTILOS GENERALES ====== */
.nosotros-container {
    width: 100%;
    padding: 80px 10%;
    background: #f8f8f8;
}

.contenedor-nosotros {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nosotros-texto {
    flex: 1;
    max-width: 50%;
}

.nosotros-imagen {
    flex: 1;
    max-width: 50%;
    text-align: center;
}

.nosotros-imagen img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ====== TITULOS Y TEXTOS ====== */
.titulo-nosotros {
    font-size: 2.5rem;
    color: #2ecf15;
    margin-bottom: 20px;
    position: relative;
}

.titulo-nosotros span {
    color: #01ee38
}

.descripcion-nosotros {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ====== BOTÓN ====== */
.boton-nosotros {
    display: inline-block;
    padding: 12px 25px;
    background: #d9534f;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.boton-nosotros:hover {
    background: #c9302c;
}

/* ====== ANIMACIONES ====== */
.animacion-izquierda {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-in-out forwards;
}

.animacion-derecha {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease-in-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .contenedor-nosotros {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-texto, .nosotros-imagen {
        max-width: 100%;
    }
}
