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

* {
    font-family: "Lexend Deca", sans-serif;
    margin: 0;
    padding: 0;
}

html {
    font-size: 15px;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
}

header {
    width: 100%;
    padding: 15px 0px;
    border-bottom: 2px solid #ffe2d1;
    text-align: -webkit-center;
}

.menu-late-termos {
    border-right: 2px solid #ffe2d1;
    padding: 20px;
    min-width: 207px;
}

.menu-late-termos ul a,
.menu-late-termos a {
    text-decoration: none;
    list-style: none;
}

.cx-pai {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.cx-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img1 {
    width: 70px;
}

.img2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fig1 {
    z-index: 2;
    animation: girar 4s linear infinite;
}

.fig2 {
    z-index: 1;
    animation: piscar 1s ease-in-out infinite;
}

.cx-figs {
    position: relative;
    width: 27px;
    height: 27px;
    margin: 0px 10px 0px 20px;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes piscar {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 7px 0px;
}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 7px 0px;
}

h3 {
    font-weight: 400;
    font-size: 1.14rem;
}

p {
    font-weight: 350;
    font-size: 1rem;
    padding-left: 8px;
    margin: 5px 0px;
    text-align: justify;
}

li {
    font-weight: 300;
    color: #555555;
    margin: 5px 0px 5px 25px;
    text-align: justify;
}

em {
    font-size: 12px;
    color: #555555;
}

.sumario li {
    margin-left: 5px !important;
}

.bem-vindo {
    margin-bottom: 1.4rem;
}

.bem-vindo p {
    text-align: justify;
}

.cx-textos {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    overflow: auto;
    height: 80dvh;
    scroll-behavior: smooth;
}

.sumario {
    padding: 1.1rem;
    background-color: #e5e5e5;
    border-radius: 8px;
}

.sumario ul {
    list-style: none !important;
}

.sumario ul a,
.menu-mobile-termos ul a {
    list-style: none;
    text-decoration: none;
}

.sumario ul li,
.menu-late-termos ul li,
.menu-mobile-termos ul li {
    padding: 7px;
    border-radius: 8px;
    color: #373737;
}

.sumario ul li:hover,
.menu-late-termos ul li:hover,
.menu-mobile-termos ul li:hover {
    background-color: #bd663446;
}

#politica-privacidade,
#termos-e-uso {
    padding: 2.3rem 0rem;
}

.voltar-inicio {
    display: flex;
    align-items: center;
    margin-bottom: 1.9rem;
    transition: all .3s;
}

.voltar-inicio:hover {
    transform: scale(1.03);
}

.voltar-inicio p {
    margin: 0px;
}

.voltar-inicio i,
.voltar-inicio p {
    font-size: 13px;
    color: #2e2e2e;
}

.btn-header-mobile {
    display: none;
}

.btn-header-mobile i {
    font-size: 2rem;
    cursor: pointer;
}

.btn-header-mobile-aberto {
    margin-bottom: 2rem;
}

.btn-header-mobile-aberto i {
    font-size: 2rem;
    cursor: pointer;
    margin: none !important;
}

.menu-mobile-termos {
    position: fixed;
    height: 100dvh;
    left: 0;
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    flex-direction: column;
    z-index: 99;
}

.menu-mobile-termos.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.overlay.active {
    display: block;
    opacity: 1; 
}

.menu-mobile-termos a {
    text-decoration: none;
}

@media (width < 720px) {
    header {
        display: flex;
        justify-content: space-between;
    }

    .menu-late-termos {
        display: none;
    }

    .btn-header-mobile {
        display: flex;
        margin-left: 4%;
    }

    .cx-logo {
        margin-right: 4%;
    }
}