/* =========================================================
   FOOTER - MANDARINA ROLEPLAY
   Archivo: 30-footer.css
========================================================= */

/* =========================================================
   FOOTER GENERAL
========================================================= */

.mrp-footer {
    position: relative;
    z-index: 5;

    margin-left: var(--mrp-sidebar-width, 430px);
    padding: 0 54px 38px;

    background: transparent;
    color: var(--mrp-text, #ffffff);
}

.mrp-footer-inner {
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 34px 0 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 28px;
}

/* =========================================================
   MARCA / TEXTO
========================================================= */

.mrp-footer-brand {
    min-width: 0;
}

.mrp-footer-logo-text {
    margin-bottom: 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.mrp-footer-logo-text span {
    color: var(--mrp-orange, #ff7a00);

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mrp-footer-logo-text strong {
    color: #ffffff;

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 0.95;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mrp-footer-brand p {
    max-width: 460px;
    margin: 0;

    color: var(--mrp-muted, #c8c5d4);

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

/* =========================================================
   BENEFICIOS
========================================================= */

.mrp-footer-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mrp-footer-benefit {
    min-height: 76px;
    padding: 16px;

    border-radius: 16px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));

    border: 1px solid rgba(255, 255, 255, 0.075);

    display: flex;
    align-items: center;
    gap: 14px;
}

.mrp-footer-benefit i {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 13px;

    background: rgba(255, 122, 0, 0.13);
    border: 1px solid rgba(255, 122, 0, 0.30);

    color: var(--mrp-orange-hover, #ff9b2f);
    font-size: 17px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mrp-footer-benefit div {
    min-width: 0;
}

.mrp-footer-benefit strong {
    display: block;
    margin-bottom: 3px;

    color: #ffffff;

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.mrp-footer-benefit span {
    display: block;

    color: var(--mrp-muted-soft, #8f8b9d);

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

/* =========================================================
   ACCIONES / LINKS
========================================================= */

.mrp-footer-actions {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.mrp-footer-actions a {
    min-height: 50px;
    padding: 0 18px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);

    color: #ffffff;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;

    transition:
        background var(--mrp-transition, 0.22s ease),
        border-color var(--mrp-transition, 0.22s ease),
        color var(--mrp-transition, 0.22s ease),
        transform var(--mrp-transition, 0.22s ease),
        box-shadow var(--mrp-transition, 0.22s ease);
}

.mrp-footer-actions a i {
    color: var(--mrp-orange-hover, #ff9b2f);
    font-size: 15px;
}

.mrp-footer-actions a:hover {
    background: rgba(255, 122, 0, 0.13);
    border-color: rgba(255, 122, 0, 0.45);
    color: var(--mrp-orange-hover, #ff9b2f);
    transform: translateY(-1px);
    box-shadow: 0 0 22px rgba(255, 122, 0, 0.10);
}

.mrp-footer-actions a:hover i {
    color: var(--mrp-orange-hover, #ff9b2f);
}

.mrp-footer-actions .mrp-footer-discord {
    background: rgba(255, 122, 0, 0.12);
    border-color: rgba(255, 122, 0, 0.38);
    color: var(--mrp-orange-hover, #ff9b2f);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.mrp-footer-bottom {
    grid-column: 1 / -1;

    padding-top: 20px;
    margin-top: 4px;

    border-top: 1px solid rgba(255, 255, 255, 0.055);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.mrp-footer-bottom p {
    margin: 0;

    color: var(--mrp-muted-soft, #8f8b9d);

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}

.mrp-footer-bottom p:first-child {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE FOOTER
========================================================= */

@media (max-width: 1180px) {
    .mrp-footer {
        padding: 0 34px 36px;
    }

    .mrp-footer-inner {
        grid-template-columns: 1fr;
    }

    .mrp-footer-actions {
        justify-content: flex-start;
    }

    .mrp-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .mrp-footer {
        margin-left: 0;
        padding: 0 20px 34px;
    }

    .mrp-footer-inner {
        padding-top: 28px;
    }

    .mrp-footer-benefits {
        grid-template-columns: 1fr;
    }

    .mrp-footer-actions {
        gap: 10px;
    }

    .mrp-footer-actions a {
        min-height: 48px;
        padding: 0 16px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .mrp-footer-logo-text strong {
        font-size: 23px;
    }

    .mrp-footer-brand p {
        font-size: 15px;
    }

    .mrp-footer-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .mrp-footer-actions a {
        width: 100%;
        justify-content: space-between;
    }
}

/* =========================================================
   DISCORD FLOATING BUBBLE
========================================================= */

.mrp-discord-bubble {
    position: fixed;
    right: 24px;
    bottom: 28px;

    min-height: 54px;
    padding: 8px 18px 8px 8px;

    border-radius: 999px;

    background:
        linear-gradient(135deg, rgba(255, 122, 0, 0.96), rgba(255, 155, 47, 0.96));

    border: 1px solid rgba(255, 255, 255, 0.20);

    color: #111111;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-family: 'Rajdhani', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2px;

    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.36),
        0 0 28px rgba(255, 122, 0, 0.20);

    z-index: 1300;

    transition:
        transform var(--mrp-transition, 0.22s ease),
        box-shadow var(--mrp-transition, 0.22s ease),
        background var(--mrp-transition, 0.22s ease);
}

.mrp-discord-bubble:hover {
    transform: translateY(-3px) scale(1.02);

    background:
        linear-gradient(135deg, rgba(255, 155, 47, 1), rgba(255, 122, 0, 1));

    box-shadow:
        0 22px 54px rgba(0, 0, 0, 0.42),
        0 0 34px rgba(255, 122, 0, 0.32);
}

.mrp-discord-bubble-icon {
    width: 40px;
    height: 40px;

    border-radius: 999px;

    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.mrp-discord-bubble-text {
    color: #111111;
    white-space: nowrap;
}

/* =========================================================
   DISCORD BUBBLE RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .mrp-discord-bubble {
        right: 18px;
        bottom: 18px;

        min-height: 50px;
        padding: 7px 15px 7px 7px;

        font-size: 14px;
        z-index: 1250;
    }

    .mrp-discord-bubble-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .mrp-discord-bubble {
        right: 14px;
        bottom: 14px;
    }

    .mrp-discord-bubble-text {
        display: none;
    }

    .mrp-discord-bubble {
        padding: 7px;
    }
}