/* HERO */
.nosotros-hero {
    position: relative;
    min-height: 80vh;
    background-image: url("../images/hero-nosotros.webp");
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    margin-top: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0% 100%);
}

.nosotros-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 25, 50, 0.85),
        rgba(26, 98, 226, 0.65)
    );
}

.nosotros-hero__container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.nosotros-hero__title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.nosotros-hero__subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.3rem);
    opacity: 0.95;
}

/* SECCIONES */
.nosotros-section {
    padding: 5rem 2rem;
    background-color: var(--color-bg);
}

.nosotros-section--dark {
    background-color: var(--color-bg-secondary);
}

.nosotros-section__container {
    max-width: 900px;
    margin: 0 auto;
}

.nosotros-section__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.nosotros-section__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

/* VALORES */
.nosotros-values {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), #0f1932);
    color: #fff;
}

.nosotros-values__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.nosotros-value {
    background: rgba(0, 0, 0, 0.25);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    backdrop-filter: blur(4px);
}

.nosotros-value__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.nosotros-value__text {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .nosotros-values__container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nosotros-hero {
        min-height: 50vh;
    }

    .nosotros-section {
        padding: 3rem 1.5rem;
    }
}
