/*
Theme Name: Juma
Template: generatepress
Version: 1.0.0
*/

/* ==================================================
   HEADER JUMA - COLORES HOME + FUENTE ORIGINAL
================================================== */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --juma-navy: #132b55;
    --juma-navy-dark: #0d1f40;
    --juma-blue: #7186df;
    --juma-blue-hover: #5f75d3;
    --juma-blue-soft: #eef2ff;
    --juma-white: #ffffff;
    --juma-text: #132b55;
    --juma-muted: #6d7890;
    --juma-border: rgba(19, 43, 85, .12);
    --juma-shadow: 0 18px 42px rgba(19, 43, 85, .14);
    --juma-transition: all .25s ease;
    --juma-mobile-icons-height: 58px;
}

/* ==================================================
   BOTONES GLOBALES JUMA
================================================== */

:root {
    --juma-btn-navy: #14274E;
    --juma-btn-blue: #7186df;
    --juma-btn-white: #ffffff;
    --juma-btn-muted: #69727d;
}

.juma-btn,
a.juma-btn,
button.juma-btn,
input[type="submit"].juma-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.juma-btn i,
a.juma-btn i,
button.juma-btn i {
    font-size: 14px;
    line-height: 1;
}

.juma-btn-1,
a.juma-btn-1,
button.juma-btn-1 {
    background: var(--juma-btn-navy) !important;
    color: var(--juma-btn-white) !important;
    border-color: var(--juma-btn-navy) !important;
    box-shadow: 0 12px 26px rgba(20, 39, 78, .20);
}

.juma-btn-1:hover,
a.juma-btn-1:hover,
button.juma-btn-1:hover {
    background: var(--juma-btn-navy) !important;
    color: var(--juma-btn-muted) !important;
    border-color: var(--juma-btn-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 39, 78, .26);
}

.juma-btn-2,
a.juma-btn-2,
button.juma-btn-2 {
    background: var(--juma-btn-blue) !important;
    color: var(--juma-btn-white) !important;
    border-color: var(--juma-btn-blue) !important;
    box-shadow: 0 12px 26px rgba(113, 134, 223, .28);
}

.juma-btn-2:hover,
a.juma-btn-2:hover,
button.juma-btn-2:hover {
    background: var(--juma-btn-navy) !important;
    color: var(--juma-btn-white) !important;
    border-color: var(--juma-btn-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 39, 78, .26);
}

.juma-btn-3,
a.juma-btn-3,
button.juma-btn-3 {
    background: var(--juma-btn-white) !important;
    color: var(--juma-btn-navy) !important;
    border-color: var(--juma-btn-white) !important;
    box-shadow: 0 12px 26px rgba(20, 39, 78, .12);
}

.juma-btn-3:hover,
a.juma-btn-3:hover,
button.juma-btn-3:hover {
    background: var(--juma-btn-navy) !important;
    color: var(--juma-btn-white) !important;
    border-color: var(--juma-btn-navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(20, 39, 78, .24);
}

.juma-btn-sm {
    min-height: 40px;
    padding: 11px 18px;
    font-size: 13px;
}

.juma-btn-lg {
    min-height: 54px;
    padding: 16px 30px;
    font-size: 15px;
}

@media (max-width: 767px) {
    .juma-btn,
    a.juma-btn,
    button.juma-btn,
    input[type="submit"].juma-btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 13.5px;
    }

    .juma-btn-lg {
        min-height: 50px;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* ==================================================
   BASE HEADER
================================================== */

.juma-header,
.juma-header * {
    box-sizing: border-box;
}

.juma-header {
    width: 100%;
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    z-index: 9998;
}

.juma-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ==================================================
   TOPBAR
================================================== */

.juma-topbar {
    width: 100%;
    background: var(--juma-navy);
    color: var(--juma-white);
    font-size: 13px;
    font-weight: 500;
}

.juma-topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.juma-topbar__left,
.juma-topbar__right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.juma-topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--juma-white) !important;
    text-decoration: none !important;
    line-height: 1.3;
    transition: var(--juma-transition);
}

.juma-topbar a:hover {
    color: var(--juma-blue) !important;
}

.juma-topbar i {
    color: var(--juma-blue);
    font-size: 14px;
}

/* ==================================================
   MAINBAR
================================================== */

.juma-mainbar {
    width: 100%;
    background: var(--juma-white);
    position: sticky;
    top: 0;
    z-index: 9998;
    box-shadow: 0 8px 28px rgba(19, 43, 85, .06);
}

.juma-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ==================================================
   LOGO
================================================== */

.juma-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none !important;
    flex-shrink: 0;
    min-width: max-content;
}

.juma-logo__img {
    display: block;
    width: auto;
    height: 62px;
    max-width: 190px;
    object-fit: contain;
}

/* ==================================================
   MENÚ DESKTOP
================================================== */

.juma-menu-toggle,
.juma-services-toggle {
    display: none !important;
}

.juma-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.juma-nav a {
    text-decoration: none !important;
}

.juma-nav > a,
.juma-nav__link,
.juma-services-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 13px;
    color: var(--juma-text) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border-radius: 13px;
    transition: var(--juma-transition);
    white-space: nowrap;
    cursor: pointer;
}

.juma-services-row {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.juma-services-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 38px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--juma-transition);
}

.juma-services-arrow i {
    font-size: 11px;
    color: var(--juma-navy);
    transition: var(--juma-transition);
}

.juma-nav > a:hover,
.juma-nav > a.active,
.juma-nav__item:hover > .juma-services-row .juma-nav__link,
.juma-nav__item:hover > .juma-services-row .juma-services-arrow {
    color: var(--juma-blue) !important;
    background: transparent;
}

.juma-nav__item:hover .juma-services-arrow i {
    color: var(--juma-blue);
    transform: rotate(180deg);
}

.juma-nav__item {
    position: relative;
}

/* ==================================================
   SUBMENÚ DESKTOP
================================================== */

.juma-submenu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    width: 330px;
    background: var(--juma-white);
    border: 1px solid var(--juma-border);
    border-radius: 20px;
    box-shadow: var(--juma-shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--juma-transition);
    z-index: 99999;
}

.juma-nav__has-submenu:hover > .juma-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.juma-submenu::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 18px;
}

.juma-submenu--services {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.juma-submenu a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 44px;
    padding: 12px 14px;
    color: var(--juma-text) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    border-radius: 13px;
    background: transparent;
    transition: var(--juma-transition);
    gap: 10px;
}

.juma-submenu a::before {
    content: "";
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--juma-blue);
    box-shadow: 0 0 0 4px rgba(113, 134, 223, .14);
}

.juma-submenu a:hover {
    background: var(--juma-blue-soft);
    color: var(--juma-blue) !important;
    transform: translateX(3px);
}

/* ==================================================
   CTA HEADER
================================================== */

.juma-header__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.juma-btn-primary {
    background: var(--juma-navy);
    color: var(--juma-white) !important;
    box-shadow: 0 12px 26px rgba(19, 43, 85, .20);
}

.juma-btn-primary:hover {
    background: var(--juma-blue);
    color: var(--juma-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(113, 134, 223, .30);
}

.juma-mobile-actions {
    display: none;
}

/* ==================================================
   HAMBURGUESA
================================================== */

.juma-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--juma-navy);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 12px 26px rgba(19, 43, 85, .18);
    flex-shrink: 0;
}

.juma-menu-btn span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--juma-white);
    transition: var(--juma-transition);
}

.juma-menu-toggle:checked + .juma-menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.juma-menu-toggle:checked + .juma-menu-btn span:nth-child(2) {
    opacity: 0;
}

.juma-menu-toggle:checked + .juma-menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==================================================
   FIX MY STICKY ELEMENTS
================================================== */

#mystickyelements-wrap,
.mystickyelements-fixed,
.mystickyelements-fixed *,
.mystickyelements-social-icon,
.mystickyelements-contact-form,
.mystickyelements-minimize {
    z-index: 999999 !important;
}

/* ==================================================
   RESPONSIVE HEADER
================================================== */

@media (max-width: 1280px) {
    .juma-container {
        max-width: 1180px;
        padding: 0 22px;
    }

    .juma-nav {
        gap: 8px;
    }

    .juma-nav > a,
    .juma-nav__link,
    .juma-services-label {
        font-size: 14px;
    }

    .juma-btn {
        font-size: 14px;
        padding: 13px 19px;
        min-height: 46px;
    }
}

@media (max-width: 1180px) {
    .juma-header__inner {
        gap: 16px;
    }

    .juma-logo__img {
        height: 58px;
        max-width: 180px;
    }

    .juma-nav {
        gap: 4px;
    }

    .juma-nav > a,
    .juma-nav__link,
    .juma-services-label {
        font-size: 13px;
        padding: 12px 9px;
    }

    .juma-btn {
        min-height: 44px;
        padding: 13px 15px;
        font-size: 13px;
    }

    .juma-btn i {
        font-size: 13px;
    }
}

@media (max-width: 1080px) {
    .juma-topbar__inner {
        justify-content: center;
        text-align: center;
    }

    .juma-topbar__left {
        display: none;
    }

    .juma-topbar__right {
        justify-content: center;
    }
}

/* ==================================================
   TABLET Y MÓVIL
================================================== */

@media (max-width: 1024px) {
    .juma-container {
        padding: 0 18px;
    }

    .juma-header__inner {
        min-height: 78px;
    }

    .juma-logo__img {
        height: 56px;
        max-width: 170px;
    }

    .juma-menu-btn {
        display: flex;
        order: 3;
    }

    .juma-header__cta {
        display: none;
    }

    .juma-nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        width: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 16px;
        background: var(--juma-white);
        border: 1px solid var(--juma-border);
        border-radius: 0 0 22px 22px;
        box-shadow: var(--juma-shadow);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        z-index: 99999;
    }

    .juma-menu-toggle:checked ~ .juma-nav {
        display: flex;
    }

    .juma-nav > a {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px 16px !important;
        background: #f8f9ff !important;
        border: 1px solid rgba(19, 43, 85, .08) !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        color: var(--juma-text) !important;
        font-weight: 800 !important;
    }

    .juma-nav > a.active {
        color: var(--juma-blue) !important;
    }

    .juma-nav__item {
        width: 100%;
    }

    .juma-services-row {
        width: 100%;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 54px;
        gap: 8px;
        align-items: stretch;
    }

    .juma-services-label {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 15px 16px !important;
        background: #f8f9ff !important;
        border: 1px solid rgba(19, 43, 85, .08) !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        color: var(--juma-text) !important;
        font-weight: 800 !important;
    }

    .juma-services-arrow {
        width: 54px !important;
        height: auto !important;
        min-height: 52px !important;
        border-radius: 14px !important;
        background: #14274E !important;
        border: 1px solid #14274E !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .juma-services-arrow i {
        color: #ffffff !important;
        font-size: 13px !important;
        transition: var(--juma-transition);
    }

    .juma-services-toggle:checked ~ .juma-services-row .juma-services-arrow {
        background: var(--juma-blue) !important;
        border-color: var(--juma-blue) !important;
    }

    .juma-services-toggle:checked ~ .juma-services-row .juma-services-arrow i {
        transform: rotate(180deg) !important;
    }

    .juma-nav__has-submenu:hover > .juma-submenu {
        display: none !important;
    }

    .juma-submenu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 0 !important;
        background: transparent !important;
        padding: 10px 0 0 12px !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .juma-services-toggle:checked ~ .juma-submenu {
        display: flex !important;
    }

    .juma-submenu::before {
        display: none;
    }

    .juma-submenu a {
        position: relative;
        background: #ffffff !important;
        border: 1px solid var(--juma-border) !important;
        margin: 0 !important;
        padding: 13px 14px 13px 18px !important;
        border-radius: 14px !important;
        color: var(--juma-text) !important;
        font-size: 13.5px !important;
        font-weight: 800 !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .juma-submenu a::before {
        content: "";
        width: 9px !important;
        height: 9px !important;
        min-width: 9px !important;
        border-radius: 50% !important;
        background: var(--juma-blue) !important;
        box-shadow: 0 0 0 4px rgba(113, 134, 223, .14) !important;
    }

    .juma-submenu a:hover {
        transform: none;
        color: var(--juma-blue) !important;
        background: var(--juma-blue-soft) !important;
    }

    .juma-nav__item:hover .juma-services-arrow i {
        transform: none;
    }

    .juma-services-toggle:checked ~ .juma-services-row .juma-services-arrow i {
        transform: rotate(180deg) !important;
    }

    .juma-mobile-actions {
        display: block;
        width: 100%;
        margin-top: 6px;
    }

    .juma-mobile-actions .juma-btn {
        width: 100%;
        min-height: 50px;
        font-size: 14px;
        padding: 15px 18px;
    }
}

/* ==================================================
   MÓVIL
================================================== */

@media (max-width: 767px) {
    body {
        padding-top: 128px !important;
    }

    .juma-topbar {
        display: none !important;
    }

    .juma-container {
        padding: 0 14px;
    }

    .juma-header {
        position: fixed !important;
        top: var(--juma-mobile-icons-height) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99998 !important;
        background: transparent !important;
    }

    .juma-mainbar {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        z-index: 99998 !important;
        background: var(--juma-white) !important;
        box-shadow: 0 8px 24px rgba(19, 43, 85, .10) !important;
        margin-top: -13px;
    }

    .juma-header__inner {
        min-height: 72px !important;
        gap: 12px;
    }

    .juma-logo__img {
        height: 52px;
        max-width: 160px;
    }

    .juma-menu-btn {
        width: 45px;
        height: 45px;
        border-radius: 14px;
    }

    .juma-nav {
        position: absolute !important;
        top: 100% !important;
        left: 12px !important;
        right: 12px !important;
        padding: 14px;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
    }

    #mystickyelements-wrap,
    .mystickyelements-fixed,
    .mystickyelements-fixed * {
        z-index: 999999 !important;
    }
}

@media (max-width: 430px) {
    .juma-logo__img {
        height: 48px;
        max-width: 145px;
    }

    .juma-header__inner {
        min-height: 68px !important;
    }

    .juma-nav > a,
    .juma-services-label,
    .juma-submenu a {
        font-size: 13.5px !important;
    }

    .juma-services-row {
        grid-template-columns: minmax(0, 1fr) 50px;
        gap: 7px;
    }

    .juma-services-arrow {
        width: 50px !important;
        min-height: 50px !important;
    }

    .juma-btn {
        font-size: 13.5px;
        padding: 13px 16px;
    }
}

/* ==================================================
   FOOTER JUMA
================================================== */

.juma-footer,
.juma-footer * {
    box-sizing: border-box;
}

.juma-footer {
    width: 100%;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #ffffff;
    background: #14274E;
    overflow: hidden;
}

.juma-footer__main {
    position: relative;
    padding: 72px 0 52px;
    background:
        radial-gradient(circle at top right, rgba(113, 134, 223, .28), transparent 34%),
        linear-gradient(135deg, #14274E 0%, #0d1f40 100%);
}

.juma-footer__container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

.juma-footer__main .juma-footer__container {
    display: grid;
    grid-template-columns: 1.35fr .85fr .75fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.juma-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    margin-bottom: 22px;
    background: #ffffff;
    border-radius: 18px;
    padding: 12px 16px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.juma-footer__logo img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 180px;
    object-fit: contain;
}

.juma-footer__brand p,
.juma-footer__cta p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.75;
}

.juma-footer__contact {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.juma-footer__contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.45;
}

.juma-footer__contact i {
    color: #7186df;
    margin-top: 3px;
}

.juma-footer a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none !important;
    transition: all .25s ease;
}

.juma-footer a:hover {
    color: #7186df;
}

.juma-footer__col h3,
.juma-footer__cta h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.juma-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.juma-footer__col li {
    margin: 0;
}

.juma-footer__col a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 600;
}

.juma-footer__col a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7186df;
    opacity: .85;
    flex-shrink: 0;
    transition: all .25s ease;
}

.juma-footer__col a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.juma-footer__col a:hover::before {
    background: #ffffff;
}

.juma-footer__cta {
    position: relative;
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .18);
}

.juma-footer__cta > span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(113, 134, 223, .18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.juma-footer__cta h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.juma-footer__cta .juma-btn {
    margin-top: 22px;
}

.juma-footer__bottom {
    background: #ffffff;
    color: #69727d;
    padding: 18px 0 70px;
}

.juma-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    flex-wrap: wrap;
}

.juma-footer__bottom p {
    margin: 0;
    color: #69727d;
    font-size: 13px;
    font-weight: 500;
}

.juma-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #69727d;
    font-size: 13px;
}

.juma-footer__legal a {
    color: #69727d;
    font-size: 13px;
    font-weight: 600;
}

.juma-footer__legal a:hover {
    color: #14274E;
}

.juma-footer__links-more {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.juma-footer__more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
    margin-top: 22px;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #14274E !important;
    border: 2px solid #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;
    transition: all .25s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .14);
}

.juma-footer__more-btn::before {
    display: none !important;
    content: none !important;
}

.juma-footer__more-btn i {
    font-size: 12px;
    transition: all .25s ease;
}

.juma-footer__more-btn:hover {
    background: #7186df;
    border-color: #7186df;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(113, 134, 223, .26);
}

.juma-footer__more-btn:hover i {
    transform: translateX(3px);
}

/* ==================================================
   RESPONSIVE FOOTER
================================================== */

@media (max-width: 1100px) {
    .juma-footer__main .juma-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
    }
}

@media (max-width: 767px) {
    .juma-footer__main {
        padding: 54px 0 38px;
    }

    .juma-footer__container {
        padding: 0 18px;
    }

    .juma-footer__main .juma-footer__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .juma-footer__logo {
        padding: 10px 14px;
        border-radius: 16px;
    }

    .juma-footer__logo img {
        height: 50px;
        max-width: 160px;
    }

    .juma-footer__cta {
        padding: 24px;
        border-radius: 22px;
    }

    .juma-footer__cta h3 {
        font-size: 20px;
    }

    .juma-footer__bottom-inner {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .juma-footer__legal {
        width: 100%;
        justify-content: center !important;
    }

    .juma-footer__bottom p {
        width: 100%;
        text-align: center !important;
    }

    .juma-footer__more-btn {
        margin-top: 18px;
        min-height: 40px;
        padding: 11px 17px;
        font-size: 13px;
    }
}

@media (max-width: 430px) {
    .juma-footer__brand p,
    .juma-footer__cta p,
    .juma-footer__contact li,
    .juma-footer__col a {
        font-size: 13.5px;
    }

    .juma-footer__cta {
        padding: 22px;
    }
}

/* ==================================================
   FIX HEADER BLANCO STICKY EN PC
================================================== */

@media (min-width: 768px) {
    .juma-header {
        position: sticky !important;
        top: -40px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99998 !important;
        background: transparent !important;
    }

    .juma-topbar {
        position: relative !important;
        z-index: 1 !important;
    }

    .juma-mainbar {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        box-shadow: 0 8px 28px rgba(19, 43, 85, .08) !important;
    }

    .juma-nav,
    .juma-submenu {
        z-index: 999999 !important;
    }
}
