.nosotros-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/nosotros.jpeg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.nosotros-content {
    padding: 5rem 0;
    position: relative;
}

.nosotros-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    height: 100%;
}

.nosotros-image-container:hover {
    transform: translateY(-10px);
}

.nosotros-image-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.nosotros-text-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.nosotros-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.nosotros-p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .nosotros-hero {
        height: 30vh;
    }
    .nosotros-text-card {
        padding: 2rem;
        margin-top: 2rem;
    }
}
