:root {
    --color1: #1B2737;
    --color2: #1B2737;
    --color3: #344967;
    --color4: #fff;
    --color5: #000;
    --color6: #F2E7A9;

    --text-weigth: 500;

    --titulo: 29px;
    --subtitulo: font-size: 20px;
    --text: 17px;

}

html {
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 65px;
    z-index: 999;
    background: var(--color1);
}

.container-header {
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    color: var(--color4);
}

.nav1 {
    display: none;
}

.figure-logo img {
    width: 235px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--color4);
    font-size: 18px;
}

.nav-menu-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu-icons img {
    width: 25px;
}

.nav-menu-icons button {
    width: 225px;
    border: none;
    height: 40px;
    font-size: 16px;
    border-radius: 3px;
    background: var(--color4);
}

.nav-menu-icons button a {
    color: var(--color1);
}

#button-header {
    display: none;
}

#button-secund-banner {
    background: transparent;
    border: 1px solid rgb(255 255 255);
}

#button-secund-banner a {
    color: rgb(255, 255, 255);
}

footer p {
    text-align: center;
    background: white;
    padding: 10px 0px;
}

.TitleMain {
    padding: 30px 10px 20px;
    text-align: center;
    font-size: 26px;
    max-width: 330px;
    margin: 0 auto;
}

.BlockLGPD {
    width: 80%;
    margin: 25px auto;
    padding: 35px 10px;
    box-shadow: 3px 3px 9px #00000036;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.BlockLGPD h3 {
    font-size: 20px;
    font-weight: 600;
}

.BlockLGPD p {
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}





.overlay {
    background: #00000023;
    bottom: 0;
    left: 0;
    opacity: 1;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 500ms;
    display: none;
}

.overlay.is-open {
    display: block;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.popoup {
    background-color: #fff;
    position: relative;
    transition: all 2s ease-in-out;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
}


.popoup button {
    width: 158px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: #3030dc;
    color: white;
}

.popoup p {
    font-size: 12px;
    line-height: 15px;
    padding: 4px 10px;
}

@media (min-width: 600px) {

    .nav-2-header {
        display: none;
    }

    .nav1 {
        display: block;
    }

    .figure-logo img {
        width: 80px;
    }

    .container-header {
        max-width: 1210px;
        height: 75px;
    }

    .nav1 a {
        font-size: 15px;
        font-family: 'Montserrat', sans-serif;
    }

    .button-header {
        padding: 5px 0px;
        width: 153px;
        background: white;
        border: none;
        border-radius: 23px;
    }

    .button-header li a {
        color: var(--color1);
    }

    .nav-menu {
        align-items: center;
    }

    .nav-menu-icons img {
        width: 28px;
    }

    #button-header {
        display: block;
    }

    #card-desck {
        display: flex;
    }

    #cards-mobile {
        display: none;
    }

    .sectionHeader {
        background: var(--color2);
    }


    .BlockLGPD {
        max-width: 1000px;
        margin: 70px auto;
    }


    .popoup {
        justify-content: center;
    }
}