:root {
    --cor_destaque: #0070c0;
    --cor_secundaria: #157fca;
    --cor_dt_escuro: #0368af;
    --cor_fundo: #1a1a1d;
    --cor_fundo_claro: #2d2d31;
    --cor_texto: #ffffff;
    --cor_texto2: rgba(255, 255, 255, 0.79);
    --cor_hover_texto: #82848e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--cor_texto);
}

body {
    background-color: #1a1a1d;
    width: 100vw;
    overflow-x: hidden;
}

p {
    margin-bottom: 0;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 1s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

#modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--cor_fundo);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;

    /* display: none; */
}

#modal.sair {
    animation-name: modal_sair;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-timing-function: ease-out;

    animation-delay: 0s;

    /* display: none; */
}

@keyframes modal_sair {
    /* 0% {
        top: 0;
        opacity: 1;
    }

    99% {
        opacity: 1;
        display: flex;
    }

    100% {
        top: 100vh;
        opacity: 0;
        display: none;
    } */

    0% {
        scale: 1;
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        scale: 5;
        display: none;
    }
}

#modal .box {
    width: 300px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#modal .box img.load {
    width: 40%;
    margin-bottom: 30px;
}

#modal .box img.logo {
    width: 100%;
}

#modal .box p {
    font-size: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.btn_contato {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.btn_contato.mob {
    display: none;
}

.btn_contato a {
    background-color: var(--cor_texto);
    color: var(--cor_destaque);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    animation-name: anima_btn;
    animation-duration: 1s;
    animation-delay: 0;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
}

@keyframes anima_btn {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.05;
    }

    100% {
        scale: 1;
    }
}

.btn_contato a:hover {
    scale: 1.05;
    letter-spacing: 1px;
}

.btn_contato.azul a {
    background-color: var(--cor_destaque);
    color: var(--cor_texto) !important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    width: 100vw;
    box-shadow: 0px 6px 19px -3px rgba(0, 112, 192, 0.687);
}

header .left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 70%;
}

header .logo {
    width: 30%;
    max-width: 150px;
    margin-right: 20px;
}

header .logo img {
    width: 100%;
}

header a {
    cursor: pointer;
    text-decoration: none;
}

header .left a {
    margin-left: 3%;
}

header a p {
    color: var(--cor_texto);
    font-size: 16px;
    font-weight: 500;
}

header a:hover p {
    color: var(--cor_hover_texto);
}

header .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 30%;
}

header .right a {
    margin-right: 3%;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 100px;
}

header .right a.entrar {
    border: 2px solid var(--cor_destaque);
    color: var(--cor_destaque);
}

header .right a.criar {
    background-color: var(--cor_destaque);
    color: var(--cor_texto);
}

header.mob {
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    display: none;
    box-shadow: 0px 3px 10px 0px rgba(0, 112, 192, 0.687);
}

header.mob img {
    width: 130px;
}

header.mob a.login {
    font-size: 18px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 100px;
    background-color: var(--cor_destaque);
    color: var(--cor_texto);
}

.sec1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
}

.sec1 .left,
.sec1 .right {
    width: 50%;
}

.sec1 .left {
    padding-right: 5%;
}

.sec1 .left h2 {
    text-align: end;
    font-size: 60px;
    font-weight: 700;
    color: var(--cor_texto);
}

.sec1 .left p {
    text-align: end;
    margin-top: 20px;
    font-size: 25px;
    color: var(--cor_hover_texto);
}

.sec1 .right {
    padding-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.sec1 .right .box {
    border: 2px solid var(--cor_destaque);
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
    padding: 15px;
    width: 300px;
    transition: 0.2s;
}

.sec1 .right .box:hover {
    box-shadow: 5px 5px 10px -3px rgba(0, 112, 192, 1);
    transform: translateX(-5px);
    transform: translateY(-5px);
}

.sec1 .right .box h3 {
    font-size: 40px;
    font-weight: 600;
    color: var(--cor_texto);
    text-align: center;
}

.sec1 .right .box p {
    font-size: 20px;
    color: var(--cor_texto);
    text-align: center;
}

.sec2 {
    margin-top: 40px;
    border-top: 2px solid var(--cor_destaque);
    border-bottom: 2px solid var(--cor_destaque);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 0px 23px 10px var(--cor_destaque);
}

.sec2 .splide {
    width: 100%;
    /* max-width: 1200px; */
}

.sec2 .splide .splide__slide {
    background-color: #ffffff;
    padding: 10px 0;
}

.sec2 img {
    width: 50%;
    display: block;
    margin: 0 auto;
    background-color: #ffffff;
}

.sec3 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec3 h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
}

.sec3 .text {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.sec3 .text p {
    font-size: 17px;
    margin-bottom: 10px;
}

.sec3 .ctn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.sec3 .ctn .box {
    width: 30%;
    margin: 0 1.5% 20px 1.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    padding: 15px;
}

.sec3 .ctn .box:hover {
    box-shadow: 0px 0px 10px -3px rgba(0, 112, 192, 1);
}

.sec3 .ctn .box img {
    width: 50px;
    margin-bottom: 10px;
}

.sec3 .ctn .box p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.sec4 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    position: relative;
}

.sec4 .ctn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.sec4 .left {
    width: 60%;
    padding: 15px 10px;
}


.sec4 h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.sec4 p {
    font-size: 18px;
    font-weight: 500;
    color: var(--cor_texto);
    margin-top: 10px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

.sec4 .right {
    width: 40%;
    height: 100%;
}

.sec4 .right img {
    position: absolute;
    bottom: 0;
    right: 10%;
    height: 550px;
}

.sec5 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor_destaque);
    padding: 20px 0;
    display: none !important;
}

.sec5 .ctn {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.sec5 .ctn .top,
.sec5 .ctn .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec5 .ctn .top .left,
.sec5 .ctn .bottom .right {
    width: 25%;
}


.sec5 .ctn .top .right,
.sec5 .ctn .bottom .left {
    width: 75%;
    padding: 10px;
}

.sec5 .ctn .left.mob {
    display: none;
}

.sec5 .ctn img.banner {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
}

.sec5 .ctn h3.title {
    text-align: start;
    font-size: 30px;
    color: var(--cor_texto);
    margin-bottom: 30px;
    margin-left: 5px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

.sec5 .ctn .bottom .left h3.title {
    text-align: end;
    margin-left: 0;
    margin-right: 5px;
}

.sec5 .ctn .box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.sec5 .ctn .box img.icon {
    width: 35px;
    fill: var(--cor_texto);
}

.sec5 .ctn .box p {
    width: calc(100% - 40px);
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

.sec5 .ctn .bottom .left p {
    text-align: end;
    margin-left: 0;
    margin-right: 10px;
}

.sec6 {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec6 .text {
    max-width: 1200px;
    flex-direction: column;
    padding: 0 15px;
}

.sec6 .text h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.sec6 .text p {
    font-size: 18px;
    margin-bottom: 10px;
}

.sec6 .ctn {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
}

.sec6 .ctn .box {
    width: 30%;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec6 .ctn .box img {
    width: 70px;
    margin-bottom: 20px;
    background-color: var(--cor_destaque);
    border-radius: 100px;
    padding: 5px;
}

.sec6 .ctn .box h3 {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
    color: var(--cor_texto);
    text-align: center;
}

.sec6 .ctn .box p {
    font-size: 18px;
    font-weight: 500;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    color: var(--cor_texto);
    text-align: center;
}

.sec7 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 15px;
}

.sec7 h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
}

.sec7 .ctn {
    max-width: 1200px;
    width: 100%;
    color: var(--cor_texto);
}

.sec7 .box {
    border: 2px solid var(--cor_destaque);
    margin-bottom: 15px;
    border-radius: 10px;
}

.sec7 .box .box_pergunta {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sec7 .box .box_pergunta p {
    width: calc(100% - 30px);
    font-size: 20px;
    font-weight: 600;
    color: var(--cor_texto);
}

.sec7 .box .box_pergunta svg {
    width: 25px;
    height: 25px;
    transition: 0.2s;
}

.sec7 .box.active .box_pergunta svg {
    transform: rotate(45deg);
    scale: 1.5;
}

.sec7 .box .box_resposta {
    padding: 10px;
    border-top: 1px solid var(--cor_destaque);
    display: none;
}

.sec7 .box.active .box_resposta {
    display: block;
}

.sec7 .box .box_resposta p {
    font-size: 18px;
    font-weight: 500;
    color: var(--cor_texto);
}

.sec8 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor_destaque);
}

.sec8 .ctn {
    max-width: 1200px;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec8 h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.sec8 p {
    color: var(--cor_texto);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
}

.sec8 .btn_reclamacao {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.sec8 .btn_reclamacao a {
    border: 2px solid var(--cor_texto);
    color: var(--cor_texto);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.sec9 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor_destaque);
}

.sec9 .ctn {
    padding: 20px 15px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sec9 h3.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.sec9 .box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    background-color: var(--cor_secundaria);
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    border: 2px solid var(--cor_dt_escuro);
}

.sec9 .box img {
    margin-right: 10px;
    width: 30px;
}

.sec9 .box p {
    color: var(--cor_texto);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
}

.sec10 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--cor_destaque);
    margin-top: 30px;
    padding-bottom: 30px;
}

.sec10 .ctn {
    padding: 20px 15px;
}

.sec10 h2.title {
    font-size: 35px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cor_texto);
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

.sec10 p.text {
    color: var(--cor_texto);
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

.sec10 .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec10 .flex .box {
    width: 30%;
    max-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    background-color: var(--cor_secundaria);
}

.sec10 .flex .box img {
    /* margin-right: 10px; */
    width: 70px;
    margin-bottom: 15px;
}

.sec10 .flex .box p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.6);
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 15px;
    background-color: var(--cor_destaque);
}

footer .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
}

footer .top .box {
    width: 30%;
}

footer .top .box.sobre img {
    width: 70%;
    margin-bottom: 20px;
    background-color: var(--cor_fundo);
    padding: 5px;
    border-radius: 5px;
}

footer .top .box.sobre p {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

footer .top .box h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

footer .top .box a.line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    cursor: pointer;
    color: var(--cor_texto);
    font-size: 18px;
    font-weight: 600;
}

footer .top .box a.line svg {
    fill: var(--cor_texto);
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

footer .top .box a.line p {
    color: var(--cor_texto);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

footer .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    border-top: 2px solid var(--cor_destaque);
    padding-top: 15px;
}

footer .bottom .box {
    display: flex;
}

footer .bottom .box p {
    color: var(--cor_texto);
    font-size: 18px;
    font-weight: 600;
}

@media screen and (max-width:1100px) {
    .btn_contato.mob {
        display: flex;
    }

    .btn_contato a {
        font-size: 18px;
    }

    header.desk {
        display: none;
    }

    header.mob {
        display: flex;
    }

    .sec1 {
        display: block;
        margin-top: 0;
        padding-top: 15px;
        padding: 10px;
    }

    .sec1 .left,
    .sec1 .right {
        width: 100%;
    }

    .sec1 .left {
        padding-right: 0%;
    }

    .sec1 .left h2 {
        font-size: 30px;
        text-align: center;
        text-transform: capitalize;
    }

    .sec1 .left h2 br.desk {
        display: none;
    }

    .sec1 .left p {
        font-size: 20px;
        text-align: center;
    }

    .sec1 .left p br {
        display: none;
    }

    .sec1 .right {
        padding-left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        margin-top: 20px;
    }

    .sec1 .right .box {
        width: 32%;
        padding: 0;
        border: none;
        border-radius: 0;
    }

    .sec1 .right .box:hover {
        box-shadow: none;
        transform: translateX(0px);
        transform: translateY(0px);
    }

    .sec1 .right .box span.desk {
        display: none;
    }

    .sec1 .right .box h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .sec1 .right .box p {
        font-size: 12px;
        font-weight: 600;
    }

    .sec2 {
        margin-top: 20px;
        box-shadow: 0px 0px 10px 5px var(--cor_destaque);
    }

    .sec2 img {
        width: 70%;
        background-color: #ffffff;
    }

    .sec3 {
        margin-top: 20px;
        padding: 0 10px;
    }

    .sec3 h2.title {
        font-size: 25px;
        font-weight: 600;
    }

    .sec3 .text {
        padding: 0 5px;
    }

    .sec3 .text p {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .sec3 .text p.desk {
        display: none;
    }

    .sec3 .ctn {
        padding: 0 0;
    }

    .sec3 .ctn .box {
        width: 47%;
        margin: 0 0 0 0;
        padding: 0;
        margin-bottom: 20px;
    }

    .sec3 .ctn .box:hover {
        box-shadow: none;
    }

    .sec3 .ctn .box img {
        width: 50px;
        margin-bottom: 10px;
    }

    .sec3 .ctn .box p {
        font-size: 16px;
    }

    .sec4 {
        margin-top: 30px;
    }

    .sec4 .left {
        width: 100%;
        padding: 10px 15px 15px 15px;
    }

    .sec4 h2.title {
        font-size: 25px;
    }

    .sec4 p {
        font-size: 16px;
        text-align: center;
    }

    .sec4 .right {
        display: none;
    }

    .sec5 {
        margin-top: 20px;
    }

    .sec5 .ctn .top,
    .sec5 .ctn .bottom {
        display: block;
    }

    .sec5 .ctn .top .left,
    .sec5 .ctn .bottom .right,
    .sec5 .ctn .top .right,
    .sec5 .ctn .bottom .left {
        width: 100%;
        padding: 0;
    }

    .sec5 .ctn .bottom {
        margin: 30px 0;
    }

    .sec5 .ctn .top,
    .sec5 .ctn .bottom {
        background-color: rgba(0, 0, 0, 0.1);
        padding: 15px 10px 10px 10px;
        border-radius: 15px;
    }

    .sec5 .ctn img.banner {
        width: 50%;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .sec5 .ctn img.banner.desk {
        display: none;
    }

    .sec5 .ctn .left.mob {
        display: block;
    }

    .sec5 .ctn h3.title {
        text-align: center;
        font-size: 20px;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .sec5 .ctn .bottom .left h3.title {
        text-align: center;
        margin-right: 0px;
    }

    .sec5 .ctn .box {
        margin-bottom: 15px;
    }

    .sec5 .ctn .box img.icon {
        display: none;
    }

    .sec5 .ctn .box p {
        width: 100%;
        font-size: 16px;
        margin-left: 0px;
        text-align: center;
    }

    .sec5 .ctn .bottom .left p {
        text-align: center;
        margin-right: 0px;
    }

    .sec6 {
        margin-top: 30px;
    }

    .sec6 .text {
        margin-bottom: 20px;
    }

    .sec6 .text h2.title {
        font-size: 25px;
    }

    .sec6 .text p {
        font-size: 16px;
    }

    .sec6 .ctn {
        padding: 0 15px;
        flex-direction: column;
    }

    .sec6 .ctn .box {
        width: 100%;
        margin-bottom: 20px;
        padding: 10px;
    }

    .sec6 .ctn .box img {
        width: 50px;
        margin-bottom: 10px;
    }

    .sec6 .ctn .box h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .sec6 .ctn .box p {
        font-size: 16px;
    }

    .sec6 .btn_contato {
        margin-top: 20px;
    }

    .sec7 h2.title {
        font-size: 25px;
    }

    .sec7 .box .box_pergunta p {
        font-size: 18px;
    }

    .sec7 .box .box_resposta p {
        font-size: 16px;
    }

    .sec8 h2.title {
        font-size: 22px;
    }

    .sec8 p {
        font-size: 16px;
        font-weight: 500;
    }

    .sec8 p br {
        display: none;
    }

    .sec9 .ctn {
        padding: 15px 15px;
    }

    .sec9 h3.title {
        font-size: 25px;
    }

    .sec9 .box {
        justify-content: space-between;
    }

    .sec9 .box img {
        width: 30px;
    }

    .sec9 .box p {
        font-size: 16px;
        font-weight: 500;
        width: calc(100% - 30px);
    }

    .sec10 {
        padding-bottom: 0;
    }

    .sec10 h2.title {
        font-size: 25px;
    }

    .sec10 p.text {
        font-size: 16px;
    }

    .sec10 .flex {
        flex-direction: column;
    }

    .sec10 .flex .box {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .sec10 .flex .box img {
        width: 50px;
        margin-bottom: 0;
    }

    .sec10 .flex .box p {
        width: calc(100% - 60px);
        font-size: 16px;
    }

    footer {
        padding: 10px 20px 10px 20px;
    }

    footer .top {
        flex-direction: column;
    }

    footer .top .box.sobre img {
        width: 150px;
        margin-bottom: 10px;
    }

    footer .top .box.sobre p {
        margin-bottom: 10px;
    }

    footer .top .box {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* border-top: 2px solid var(--cor_destaque); */
        padding-top: 15px;
        padding-bottom: 5px;
        margin-top: 20px;
    }

    footer .top .box:first-child {
        border-top: none;
        margin-top: 0;
    }

    footer .top .box.sobre p {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 400;
        color: var(--cor_texto2);
    }

    footer .top .box h3 {
        font-size: 20px;
        font-weight: 600;
    }

    footer .top .box a.line {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 400;
        color: var(--cor_texto2);
    }

    footer .top .box a.line svg {
        width: 20px;
        height: 20px;
        display: none;
    }

    footer .top .box a.line p {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 400;
        color: var(--cor_texto2);
    }

    footer .bottom {
        flex-direction: column;
        padding-top: 10px;
        margin-top: 10px;
        border-top: none;
    }

    footer .bottom .box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    footer .bottom .box p {
        text-align: center;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
    }
}

@media screen and (max-width:365px) {
    .sec1 .left h2 {
        font-size: 25px;
        text-align: center;
    }

    .sec1 .right .box p {
        font-size: 10px;
    }

    footer .top .box a.line {
        font-size: 16px;
    }

    footer .top .box a.line p {
        font-size: 16px;
    }
}