@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Sora", sans-serif;
    background-color: #f0f7ff;
    display: flex;
}
a {
    text-decoration: none;
    color: inherit;
}
.row {
    display: flex;
    gap: var(--gap);
}
.row > div {
    flex-basis: 100%;
}
.btn {
    font-family: "Sora", sans-serif;
    cursor: pointer;
    padding: 8px 20px;
    color: #fff;
    background-color: gray;
    border-radius: 10px;
    outline: none;
    border: none;
    display: inline-block;
    font-size: 14px;
    transition: filter .3s ease;
    text-align: center;
}
.btn:hover {
    filter: brightness(.8);
}
.btn.btn-yellow {
    background-color: #ba6d00;
}
.btn.btn-cyan {
    background-color: #007174;
}
.btn.btn-light-gray {
    background-color: #e0e0e0;
}
.btn.btn-red {
    background-color: #ff004d;
}
.btn.btn-light-orange {
    background-color: #ffa24d;
}
.btn.btn-green {
    background-color: #00ff01;
}
.btn.btn-no-background {
    background-color: transparent;
}
.btn.btn-c-black {
    color: #000;
}
.btn.btn-disabled {
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}
.btn.btn-round {
    border-radius: 50px;
}

/* -------- MODAL -------- */
.modal {
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
    z-index: 9999;
}

.modal-content {
    position: absolute;
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 64%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal .modal-content {
    overflow-y: auto;
    max-height: 90vh;
}
.modal .modal-text {
    padding: 12px;
    background: #f1f1f1;
    margin-top: 20px;
}
.modal .modal-text ol li,
.modal .modal-text ul li {
    list-style-position: inside;
    margin: 10px 0;
}
.modal-content iframe {
    width: 100%;
    margin: 14px 0;
}
.modal .modal-text.privacy {
    overflow: auto;
    max-height: 60vh;
    margin: 28px 0;
    background: #f7f7f7;
    padding: 10px;
}
.modal .modal-bottom a {
    text-decoration: underline;
}
.modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 6px;
    margin-top: 20px;
}
.closeModal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background-color: unset;
}

.closeModal:hover,
.closeModal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .modal-content {
        width: 80%;
    }
}

/* -------- FIM MODAL -------- */

aside {
    max-width: 316px;
    width: 100%;
    height: 100vh;
    background-color: #007174;
    padding: 14px 40px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9;
}
.menu-button {
    display: none;
}
aside img.logo {
    width: 80%;
    margin: 0 auto;
    display: block;
}
aside ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
    color: #fff;
    margin-top: 32px;
}
aside ul li {
    display: flex;
    gap: 12px;
}
aside ul li svg {
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
}
aside ul li img.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
aside ul li .text {
    display: block;
}
aside ul li .text h2 {
    font-weight: 300;
    font-size: 1.12rem;
    letter-spacing: 6px;
    line-height: 1;
}
aside ul li .text p {
    font-size: .88rem;
}
aside ul li .text p a {
    position: relative;
    margin-left: 10px;
}
aside ul li .text p a.active,
aside ul li a:hover {
    color: #ffa24d;
}
aside ul li .text p a::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #fff;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    clip-path: circle();
}
aside ul li .text p a.active::before,
aside ul li .text p a:hover::before {
    background-color: #ffa24d;
}
aside ul li .text p span {
    text-wrap: nowrap;
}
main {
    width: 100%;
    padding-bottom: 48px;
}
main header {
    height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 72px;
}
main header h1 {
    font-size: 1.36rem;
    font-weight: 500;
}
main header p {
    font-size: .88rem;
    font-weight: 600;
}
main .content {
    width: 95.24%;
    background-color: #fff;
    min-height: 79.17%;
    border-radius: 0px 36px 36px 0px;
    position: relative;
    padding: 0 50px;
    padding-bottom: 20px;
}
@media(max-width:1028px) {
    .row {
        display: block;
    }
}
@media(max-width:768px) {
    main header {
        margin-left: unset;
        position: sticky;
        top: 0;
        right: 0;
        z-index: 2;
        background-color: #f0f7ff;
        padding: 0 10px;
        padding-right: 50px;
    }
    main .content {
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }
    main header h1 {
        font-size: 1.2rem;
    }
    main header p {
        font-size: .8rem;
    }
    aside {
        max-width: 100%;
        width: 100vw;
        padding: 14px 0;
        transform: translateX(-100%);
        transition: all .8s ease;
        position: fixed;
    }
    .menu-button {
        display: flex;
        flex-direction: column;
        position: fixed;
        right: 16px;
        top: 35px;
        font-size: 2rem;
        transition: all .8s ease;
        z-index: 10;
    }
    .menu-button .bar {
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 3px 0;
        transition: transform .5s, background-color 1.2s;
        border-radius: 50px;
    }
    .menu-button.active .bar {
        background-color: #fff;
    }
    .menu-button.active .bar1 {
        transform: rotate(-45deg) translate(-6px, 8px);
    }

    .menu-button.active .bar2 {
        opacity: 0;
    }
    .menu-button.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    aside img {
        padding: 5px;
        max-width: 200px;
    }
    aside ul li {
        transform: translateX(16px);
        transform-origin: center;
        transition: all .6s ease;
    }
    aside ul li .text {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
        position: absolute;
        left: 28px;
        max-width: calc(90% - 28px);
        transition: all .6s ease;
    }
    aside.active {
        transform: translateX(0);
    }
    aside.active ul li {
        margin-bottom: 24px;
    }
    aside.active ul li .text {
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }
}
