/* Estilos específicos para la página de nosotros */
       .hero-nosotros {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1581091012184-5c767f7df99b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-nosotros h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-nosotros p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.nosotros-detalle {
    padding: 4rem 0;
}

.nosotros-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.nosotros-imagen {
    flex: 1;
    text-align: center;
}

.nosotros-imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.nosotros-texto {
    flex: 2;
}

.nosotros-texto p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nosotros-grid {
        flex-direction: column;
    }

    .hero-nosotros h1 {
        font-size: 2.2rem;
    }

    .hero-nosotros p {
        font-size: 1rem;
    }
}
