* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3c83f6;
    --text-color: rgba(83, 83, 83, 0.774);
    --text-color-bold: rgb(83, 83, 83);
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f5f7d2;
}

header {
    width: 100%;
    height: 70px;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    left: 0;
    top: 0;
    border: 1px solid #cccccc50;
}

#menu {
    display: none;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.imagem {
    border-radius: 6px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.imagem svg {
    width: 18px;
    height: 18px;
}

header h1 {
    font-size: 16px;
    color: var(--text-color-bold);
}

header nav {
    display: flex;
    gap: 20px;
}

header a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: .1s ease-in-out;
}

.a-active {
    color: var(--primary-color);
    font-weight: 550;
}

header a:hover {
    color: var(--text-color-bold);
}

#home {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 6%;
    padding-top: 110px;
}

#home .state {
    color: var(--primary-color);
    background-color: #3c83f61a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: .4px;
}

#home h1 {
    font-size: 25px;
    color: var(--text-color-bold);
    text-align: center;
}

#home p {
    font-size: 15px;
    color: var(--text-color);
    letter-spacing: .5px;
    text-align: center;
}

#home form {
    width: 400px;
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(121, 121, 121, 0.212);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#home form .wrap {
    display: grid;
    gap: 6px;
}

#home form label {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 550;
}

#home form input {
    flex: 1;
    height: 35px;
    font-size: 13px;
    color: var(--text-color);
    border-radius: 6px;
    border: 1px solid #8382826c;
    background-color: #c5c5c527;
    outline: none;
    padding: 0 15px;
}

#home .row {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

#home .row .wrap {
    width: 65%;
}

#home .btns {
    flex: 1;
    border: 1px solid #8382826c;
    background-color: #c5c5c527;
    height: 35px;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    gap: 10px;
}

#home .btns button {
    color: var(--text-color);
    border: none;
    height: 100%;
    flex: 1;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    background-color: transparent;
}

#home .btns .active {
    background-color: white;
    color: var(--text-color-bold);
}

#home #calcular,
#home #limpar {
    flex: 1;
    height: 35px;
    border-radius: 6px;
    font-size: 13px;
    border: none;
    letter-spacing: .3px;
    cursor: pointer;
}

#home #calcular {
    min-width: 65%;
    color: white;
    background-color: var(--primary-color);
}

#home #limpar {
    background-color: transparent;
    color: var(--primary-color);
    background-color: #97bcf834;
}

/* .anuncio {
    width: 500px;
    height: 130px;
    border: 1px solid #cccccc54;
    border-radius: 10px;
} */

.boxs {
    display: flex;
    width: 100%;
    padding: 50px 6%;
    gap: 20px;
    justify-content: center;
    background-color: #fdfdfd;
}

.box {
    width: 300px;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(121, 121, 121, 0.212);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box .line {
    display: flex;
    gap: 10px;
    align-items: center;
}

.box .state {
    border-radius: 5px;
    color: var(--primary-color);
    background-color: #3c83f61a;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box .state svg {
    width: 18px;
    height: 18px;
}

.box h3 {
    font-size: 15px;
    color: var(--text-color-bold);
}

.box p {
    font-size: 13px;
    color: var(--text-color);
    letter-spacing: .4px;
    line-height: 18px;
}

#sobre {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 70px 0;
}

#aviso {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 6%;
}

#aviso .box {
    width: 620px;
}

#aviso .state {
    color: orange;
    background-color: rgba(255, 255, 0, 0.212);
}

.show_menu {
    display: flex;
    position: absolute;
    left: 0;
    width: 100%;
    top: 70px;
    background-color: white;
    flex-direction: column;
    border: 1px solid #cccccc50;
}

.ex {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 6%;
    color: var(--text-color-bold);
}

.ex h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

.ex h6 {
    font-size: 15px;
    margin-top: 15px;
}

#politica {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 6%;
    padding-top: 110px;
    padding-bottom: 20px
}

#contacto {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 6%;
    padding-top: 110px;
    padding-bottom: 20px
}

#politica .box,
#contacto .box {
    width: 60%;
}

@media screen and (max-width: 600px) {
    header nav {
        display: none;
    }

    header nav a {
        padding: 10px 20px;
    }

    #menu {
        display: block;
        cursor: pointer;
    }

    #home form {
        width: 100%;
    }

    .boxs {
        flex-direction: column;
    }

    .boxs .box {
        width: 100%;
    }

    #politica .box,
    #contacto .box {
        width: 96%;
    }

    /* .anuncio {
    width: 100%;
    height: 130px;
    border: 1px solid #cccccc54;
    border-radius: 10px;
} */
}

@media screen and (max-width: 450px) {
    #home form .row {
        flex-direction: column;
        align-items: flex-start;
    }

    #home form .wrap {
        width: 100% !important;
        gap: 5px;
    }

    #home form .btns {
        width: 100%;
    }

    #home form .btns button {
        width: 100%;
        height: 20px;
    }

    #home form .row button {
        width: 100%;
        min-height: 30px;
        max-height: 30px;
    }
}