/* Propuesta menú hamburguesa CECOVA */
.cecova-menu-toggle,
.cecova-mobile-nav,
.cecova-mobile-backdrop {
    display: none;
}

@media screen and (max-width: 980px) {
    .cecova-desktop-menu-wrap {
        display: none !important;
    }

    .kapo_header_div {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .cecova-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 0;
        background: transparent;
        color: #fff;
        min-width: 44px;
        height: 44px;
        cursor: pointer;
        padding: 0 8px 0 4px;
        font-size: 16px;
        font-weight: 700;
    }

    .cecova-menu-toggle__icon i {
        font-size: 26px;
    }

    .kapo_header_home {
        margin-left: 0 !important;
        padding: 5px 0;
    }

    .kapo_header_contact {
        font-size: 21px;
    }

    .kapo_header_search_div {
        margin-right: 0 !important;
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .kapo_header_search_div form {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .kapo_header_search_div input[type='text'] {
        width: 135px;
        margin-top: 0;
        height: 36px;
        font-size: 16px;
    }

    .kapo_header_search_div button {
        margin-top: 0;
        margin-right: 0;
        height: 36px;
    }

    .kapo_top_logo {
        height: auto;
        min-height: 135px;
        padding: 12px 0 6px;
        box-sizing: border-box;
    }

    #kapo_logo {
        float: none;
        display: block;
        width: min(355px, 80vw);
        max-width: 355px;
        height: 95px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0 auto;
    }

    #kapo_logo_1,
    #kapo_logo_2,
    #kapo_logo_3,
    #kapo_logo_4,
    #kapo_logo_5,
    #kapo_logo_6,
    #kapo_logo_7,
    #kapo_logo_8 {
        display: none !important;
    }

    .cecova-mobile-backdrop {
        display: block;
        position: fixed;
        inset: 50px 0 0 0;
        background: rgba(0,0,0,.32);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
        z-index: 9998;
    }

    .cecova-mobile-nav {
        display: block;
        position: fixed;
        top: 50px;
        left: 0;
        width: min(88vw, 360px);
        height: calc(100vh - 50px);
        background: #ffffff;
        transform: translateX(-100%);
        transition: transform .28s ease;
        z-index: 9999;
        overflow-y: auto;
        box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }

    body.cecova-menu-open .cecova-mobile-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.cecova-menu-open .cecova-mobile-nav {
        transform: translateX(0);
    }

    .cecova-mobile-nav__title {
        background: #1074bc;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        padding: 14px 18px;
        border-bottom: 2px solid #0a5f9a;
    }

    .cecova-mobile-nav__menu,
    .cecova-mobile-nav__menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .cecova-mobile-nav__menu > li > a,
    .cecova-mobile-nav__menu > li > .cecova-submenu-toggle {
        background: #f4f7fa;
        color: #0b5e94;
        font-size: 20px;
        font-weight: 700;
    }

    .cecova-mobile-nav a,
    .cecova-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 16px;
        box-sizing: border-box;
        color: #0b5e94;
        text-decoration: none;
        border: 0;
        border-bottom: 1px solid #d9e5ee;
        background: #fff;
        text-align: left;
        cursor: pointer;
    }

    .cecova-mobile-nav .submenu {
        display: none;
        background: #fff;
    }

    .cecova-mobile-nav .has-children.is-open > .submenu {
        display: block;
    }

    .cecova-mobile-nav .submenu a,
    .cecova-mobile-nav .submenu .cecova-submenu-toggle {
        font-size: 17px;
        font-weight: 400;
        padding-left: 26px;
    }

    .cecova-mobile-nav .submenu .submenu a,
    .cecova-mobile-nav .submenu .submenu .cecova-submenu-toggle {
        font-size: 15px;
        padding-left: 40px;
        color: #195f8b;
    }

    .cecova-submenu-toggle__icon {
        font-size: 22px;
        line-height: 1;
        color: #1074bc;
        margin-left: 12px;
    }

    .cecova-mobile-nav .has-children.is-open > .cecova-submenu-toggle > .cecova-submenu-toggle__icon {
        transform: rotate(45deg);
    }
}

@media screen and (max-width: 600px) {
    .cecova-menu-toggle__text {
        display: none;
    }

    .kapo_header_contact {
        font-size: 18px;
    }

    .kapo_header_search_div input[type='text'] {
        width: 118px;
        font-size: 15px;
    }

    #kapo_logo {
        width: min(355px, 86vw);
        height: 86px;
    }
}

@media screen and (max-width: 430px) {
    .kapo_header_div {
        gap: 4px;
        padding: 0 6px;
    }

    .kapo_header_contact {
        font-size: 16px;
    }

    .kapo_header_search_div input[type='text'] {
        width: 104px;
        padding: 4px 6px;
    }

    .kapo_header_search_div button {
        padding: 4px 8px;
    }

    .kapo_header_home_icon i {
        font-size: 30px;
    }
}
