.nosotros-page {
    background: var(--color-white);
}

/* =========================
   HERO
========================= */
.nosotros-page__hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('../images/quienesomos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nosotros-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(99.54deg, rgba(20, 88, 170, 0.9) 39.74%, rgba(255, 255, 255, 0) 67.34%);
}

.nosotros-page__hero-container {
    position: relative;
    z-index: 1;
}

.nosotros-page__hero-content {
    max-width: 481px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nosotros-page__title {
    margin: 0;
    font-family: var(--font-family-heading);
    font-size: var(--text-title-size);
    line-height: var(--text-title-line);
    font-weight: var(--text-title-weight);
    color: var(--color-white);
}

.nosotros-page__subtitle {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-md-weight);
    color: var(--color-white);
}

/* =========================
   ABOUT
========================= */
.nosotros-page__about {
    background: #DBEAFE;
    padding: 72px 0;
}

.nosotros-page__section-title {
    margin: 0 0 32px;
    text-align: center;
    font-family: var(--font-family-heading);
    font-size: var(--text-subtitle-size);
    line-height: var(--text-subtitle-line);
    font-weight: var(--text-subtitle-weight);
    color: var(--color-black);
}

.nosotros-page__section-title--includes {
    margin-top: 48px;
}

.nosotros-page__lead,
.nosotros-page__text {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-md-weight);
    color: var(--color-black);
}

.nosotros-page__lead {
    color: #172522;
}

.nosotros-page__lead strong {
    font-weight: var(--text-body-bold-weight);
}

.nosotros-page__text {
    font-weight: var(--text-body-md-weight);
}

/* =========================
   INCLUDES GRID
========================= */
.nosotros-includes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
}

.nosotros-includes__card {
    min-height: 210px;
    background: var(--color-benefits);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
}

.nosotros-includes__text {
    text-align: center;
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-bold-weight);
    color: var(--color-white);
}

/* =========================
   PLANS BLOCK
========================= */
.nosotros-page__plans {
    background: var(--color-white);
    padding: 72px 0 96px;
}

.nosotros-page__plans-cards {
    margin-top: 40px;
}

.nosotros-page__plans-search {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.nosotros-page__cta-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.nosotros-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    min-height: 60px;
    padding: 0 24px;
    border-radius: var(--border-radius-lg);
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-family-base);
    font-size: var(--text-body-md-size);
    line-height: var(--text-body-md-line);
    font-weight: var(--text-body-bold-weight);
    transition: var(--transition-base);
}

.nosotros-page__cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .nosotros-page__hero {
        min-height: 480px;
    }

    .nosotros-page__title {
        font-size: var(--text-title-size);
        line-height: 56px;
    }

    .nosotros-includes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nosotros-page__hero {
        min-height: 380px;
    }

    .nosotros-page__hero-content {
        max-width: 100%;
    }

    .nosotros-page__title {
        font-size: var(--text-subtitle-size);
        line-height: 42px;
    }

    .nosotros-page__subtitle,
    .nosotros-page__lead,
    .nosotros-page__text {
        font-size: var(--text-body-sm-size);
        line-height: 24px;
    }

    .nosotros-page__about,
    .nosotros-page__plans {
        padding: 48px 0;
    }

    .nosotros-includes {
        grid-template-columns: 1fr;
    }

    .nosotros-includes__card {
        min-height: 160px;
        padding: 16px 24px;
    }

    .nosotros-page__cta {
        width: 100%;
        max-width: 300px;
    }
}
