/* =========================================================
   RUM · SECCIÓN 1
   PRESENTACIÓN + INFORMACIÓN GENERAL
   ========================================================= */

.rum-final-s1 {
    --rum-primary: #2C306C;
    --rum-primary-soft: #585684;
    --rum-text: #292B35;
    --rum-text-soft: #5E6270;
    --rum-border: #DDE1E8;
    --rum-shadow: 0 12px 32px rgba(44, 48, 108, 0.08);

    width: 100%;
    margin: 0;
    padding: 72px 0;
    color: var(--rum-text);
    background: #FFFFFF;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    box-sizing: border-box;
    border-radius: 18px;
    overflow: hidden;
}

.rum-final-s1 *,
.rum-final-s1 *::before,
.rum-final-s1 *::after {
    box-sizing: border-box;
}

.rum-final-s1__container {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}

/* =========================================================
   PRESENTACIÓN PRINCIPAL
   ========================================================= */

.rum-final-s1__hero {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(260px, 0.75fr);
    gap: 52px;
    align-items: center;
    padding-bottom: 58px;
    border-bottom: 1px solid var(--rum-border);
}

.rum-final-s1__title {
    margin: 0;
    color: var(--rum-primary);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.rum-final-s1__title span {
    white-space: nowrap;
}

.rum-final-s1__message {
    max-width: 720px;
    margin: 21px 0 0;
    color: var(--rum-primary-soft);
    font-size: clamp(1.08rem, 1.9vw, 1.35rem);
    font-style: italic;
    font-weight: 450;
    line-height: 1.55;
}

.rum-final-s1__description {
    max-width: 780px;
    margin: 24px 0 0;
    color: var(--rum-text);
    font-size: 1.03rem;
    line-height: 1.8;
    text-align: justify;
}

/* =========================================================
   IMAGEN DEL RUM
   ========================================================= */

.rum-final-s1__visual {
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid var(--rum-border);
    background: #FFFFFF;
    border-radius: 18px;
    box-shadow: var(--rum-shadow);
}

.rum-final-s1__logo {
    display: block;
    width: min(100%, 370px);
    height: auto;
    object-fit: contain;
}

.rum-final-s1__fallback {
    display: none;
    color: var(--rum-primary);
    text-align: center;
}

.rum-final-s1__fallback strong {
    display: block;
    font-size: 4rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.rum-final-s1__fallback span {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* =========================================================
   ¿QUÉ ES EL RUM?
   ========================================================= */

.rum-final-s1__about {
    padding-top: 58px;
}

.rum-final-s1__heading {
    margin: 0 0 22px;
    color: var(--rum-primary);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 730;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.rum-final-s1__text {
    max-width: 1050px;
    margin: 0;
    color: var(--rum-text);
    font-size: 1.03rem;
    line-height: 1.82;
}

.rum-final-s1__text + .rum-final-s1__text {
    margin-top: 16px;
    text-align: justify;
}

/* =========================================================
   INFORMACIÓN DEL REGLAMENTO
   ========================================================= */

.rum-final-s1__regulation {
    margin-top: 29px;
    padding: 24px 26px;
    border: 1px solid var(--rum-border);
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(44, 48, 108, 0.05);
}

.rum-final-s1__regulation h3 {
    margin: 0 0 7px;
    color: var(--rum-primary);
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.4;
}

.rum-final-s1__regulation p {
    margin: 0;
    color: var(--rum-text-soft);
    font-size: 0.96rem;
    line-height: 1.72;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .rum-final-s1__hero {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .rum-final-s1__visual {
        min-height: 210px;
    }
}

/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {
    .rum-final-s1 {
        padding: 54px 0;
    }

    .rum-final-s1__container {
        width: min(calc(100% - 28px), 1180px);
    }

    .rum-final-s1__hero {
        padding-bottom: 46px;
    }

    .rum-final-s1__title {
        font-size: clamp(1.85rem, 9vw, 2.6rem);
        line-height: 1.12;
    }

    .rum-final-s1__about {
        padding-top: 46px;
    }

    .rum-final-s1__visual {
        min-height: 175px;
        padding: 22px;
        box-shadow: none;
    }

    .rum-final-s1__regulation {
        padding: 21px;
    }
}