/* =============================== */
/*  SECCIÓN INTRODUCTORIA GLOBAL  */
/* =============================== */
.section-intro {
    padding: clamp(28px, 8vw, 30px) 0;
    background-color: #ffffff;
}

.section-intro__inner {
    width: min(90%, 1200px);
    margin: 0 auto;
    display: grid;
    gap: clamp(16px, 3vw, 24px);
    text-align: center;
}

.section-intro__title {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #333333;
    letter-spacing: -0.02em;
}

.section-intro__description {
    margin: 0 auto;
    width: min(90%, 1200px);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: #555555;
    font-weight: 300;
}

.section-intro__description--narrow {
    width: min(90%, 1200px);
}

.section-intro__actions {
    display: inline-flex;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 1025px) and (max-width: 1440px) and (max-height: 780px) {
    .section-intro {
        padding: 24px 0 18px;
    }

    .section-intro__inner {
        gap: 12px;
    }

    .section-intro__title {
        font-size: 2.875rem;
        letter-spacing: 0;
    }

    .section-intro__description {
        font-size: 1.05rem;
        line-height: 1.58;
    }
}
