@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

:root {
    --color1: #0BEB86;
    --color2: #08165C;
    --color3: #fff;
    --color4: #000;
    --font-size1: 16px;
    --font-size2: 16px;
}

#manual-geral {
    font-family: "Heebo", sans-serif;
    /* max-width: 1370px;
    margin: 0 auto;
    padding: 3em 0; */
}

.navbar-nav, .remover {
    display: none !important;
}

.title-manu {
    color: #08165C;
    font-weight: 900;
    padding: 1.15rem 1.5rem;
    margin: 0;
}

.texto-manu {
    display: flex;
    font-size: 12px;
    color: #707070;
}

.strong-manu {
    color: #51515A;
    font-weight: 600;
    padding-left: 3px;
}

.texto-manuais-red {
    font-size: 16px;
    color: #FF0000;
    font-weight: 500;
}

.full-screen-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.full-screen-image {
    max-width: 90%;
    max-height: 90%;
}
.accordion-button .collapsed {
    border-bottom: 1px solid #E2E2E2 ;
}

.nav-tabs .nav-link-acordeon.active {
    background-color: #F8F8F8;
}

.nav-tabs .nav-link-acordeon {
    color: var(--color2) !important;
    border: 0;
    padding: 20px auto !important;
}

.accordion-button:not(.collapsed) {
    color: var(--color2) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed):after {
    background-image: urlurl("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E") !important;
    background-size: 15px;
    margin-bottom: 5px;
}
.accordion-button:after{
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7949 7.57959H8.09521V12.2793H5.62939V7.57959H0.905273V5.10156H5.62939V0.377441H8.09521V5.10156H12.7949V7.57959Z' fill='%2308165C'/%3E%3C/svg%3E") !important;
}
.accordion-body {
    padding: 0 0 1.15rem 0;
}

.accordion-button{
    color: #08165C;
    font-weight: bold !important;
    font-size: 18px !important;
    gap: 10px !important;
}
.nav-tabs .nav-link:hover {
    background-color: #F8F8F8;
}

.nav-manuais {
    background-color: white;
    margin: 20px 0;
    padding: 0;
}

.section-banners {
    background: #FAFAFA;
    padding: 38px;
    width: 73.4%;
    margin: 0;
}

.imgManual {
    cursor: pointer;
    width: 100%;
    margin-bottom: 7px;
}

.nav-tabs {
    display: flex;
    flex-direction: column;
}

.botaofechar,
.button-nav-manu {
    display: none;
}

@media (max-width: 768px) {
    .botaofechar {
        display: flex;
        justify-content: flex-end;
        padding: 0 0 30px 0;
    }
    .button-nav-manu {
        display: block;
        background: transparent;
        border: 2px solid var(--color2);
        padding: 10px;
        border-radius: 5px;
    }
    .section-banners{
        width: 100%;
    }
    #cont-manu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .btn-close{
        padding: 0 20px;
    }
    .accordion {
        position: fixed;
        top: 0;
        left: 0;
        width: 90%;
        height: 100%;
        padding: 20px 0 ;
        background-color: var(--color3);
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 1050;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease, visibility 0s linear 0.8s;
    }

    .accordion.show {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease;
    }

    .accordion.hide {
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease, visibility 0s linear 0.8s;
    }
}