body {
    background: linear-gradient(135deg, #EAF0F9, #6e9ad3af);
    overflow-x: hidden;
    clip-path: inset(0 0 0 0);
    height: auto;
    min-height: 100vh;
}

html, body {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

header {
    position: sticky;
    top: 0%;
    z-index: 100;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 80px;
    user-select: none;
}

#header-cont-one {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin: 0;
    padding: 0;
    height: 80px;
    width: 100%;
    background: linear-gradient(to right, rgb(0, 44, 59), rgb(0, 72, 99));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

#header-cont-one h2 {
    margin: 0;
    padding: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    position: relative;
    color: lightblue;
    transition: all 0.5s ease;
    text-shadow: 2px 2px 1px black;
}

#header-cont-one h2:hover {
    color: white;
    cursor: pointer;
}

.menu-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 15px;
    gap: 5px;
    margin: 0;
    padding: 0;
    transition: all 0.5s ease;
    border-radius: 4px;
    cursor: pointer;
}

.menu-btn .bar {
    transform-origin: center;
    margin: 0;
    height: 3px;
    width: 25px;
    background-color: lightblue;
    box-shadow: 2px 2px 1px black;
    border-radius: 4px;
    transition: all 0.5s ease;
}

.menu-btn.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.65);
}

.menu-btn.active .bar:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-btn.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.65);
}

#header-cont-one .menu-btn:hover .bar {
    background-color: white;
}

#header-cont-two {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 4;
    width: 100vw;
    max-width: 450px;
    transform: translateY(-100%);
    transition: all 0.5s ease;
    overflow: hidden;
}

#header-cont-two.active {
    transform: translateY(0);
    box-shadow: 2px 2px 8px black;
}

#header-cont-two ul {
    margin: 0;
    padding: 0;
}

#header-cont-two li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    width: 100vw;
    max-width: 450px;
    height: 40px;
    background-color: rgb(0, 72, 99);
    color: lightblue;
    transition: all 0.5s ease;
    text-shadow: 2px 2px 1px black;
}

#header-cont-two li h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    margin: 0 0 0 60px;
    padding: 0;
}

#header-cont-two li i {
    position: absolute;
    height: 25px;
    font-size: 20px;
    width: 40px;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0 0 0 10px;
}

#header-cont-two li:hover {
    background-color: rgb(0, 85, 116);
    color: white;
    cursor: pointer;
}

.desativado {
    display: none !important;
}

#ql1, #ql2 {
    font-family: 'Bebas Neue', sans-serif;
    color: lightblue;
    text-shadow: 2px 2px 1px black;
    font-weight: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: smaller;
    position: absolute;
    width: 100px;
    height: 30px;
}
#ql1 {
    background-color: rgb(0, 72, 99);
    animation: loading 1.5s ease infinite;
}
#ql2 {
    background-color: rgb(0, 72, 99);
    box-shadow: 0 0 5px black;
}

#loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 999;
    top: 0%;
    width: 100vw;
    height: 100vh;
    user-select: none;
}

@keyframes loading {
    0% {
        transform: translateY(-100%);
    } 8% {
        transform: translateY(0);
    } 25% {
        transform: translateX(50%);
    } 33% {
        transform: translateX(0);
    } 50% {
        transform: translateY(100%);
    } 58% {
        transform: translateY(0);
    } 75% {
        transform: translateX(-50%);
    } 83% {
        transform: translateX(0);
    } 100% {
        transform: translateY(-100%);
    }
}

.indisponivel h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: hidden;
    width: calc(100% - 40px);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: rgb(0, 44, 59);
    padding: 20px;
}

header img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    filter: brightness(140%) saturate(40%) drop-shadow(5px 5px 10px rgba(0,0,0,0.6));
}

header img:hover {
    filter: brightness(300%) saturate(0%) drop-shadow(5px 5px 10px rgba(0,0,0,0.6));
}