header {
    margin-bottom: 18px;
}

header .menu-principal-container::before {
    display: none;
}


.page_confirmacao {
    width: 100%;
    background-color: var(--vermelho);
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.page_confirmacao .container {
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 20px;
    height: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.page_confirmacao .container .box-svg {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    background-color: #00df00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
}

.page_confirmacao .container .box-svg svg {
    width: 60%;
    fill: #fff;
}

.page_confirmacao .frase {
    font-size: 32px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: #242323;
    font-weight: 700;
    text-align: center;
    width: 90%;
}

.page_confirmacao .agradecimento {
    font-size: 16px;
    letter-spacing: 1px;
    color: #242323;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    width: 90%;

}

.page_confirmacao a {
    width: 520px;
    max-width: 90%;
    height: 56px;
    background-color: #00CF4A;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    position: relative;
    border: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px;
    margin-bottom: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: start;
    gap: 14px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0px 12px;
}

.page_confirmacao a:hover {
    -webkit-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
    border: 2px solid var(--vermelho);
    background-color: var(--vermelho);
    color: #fff;

}

@media only screen and (max-width: 1440px){
    .page_confirmacao .frase {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1024px){
    .page_confirmacao .frase {
        font-size: 26px;
    }
    .page_confirmacao .container .box-svg {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    .page_confirmacao a {
        width: 333px;
        height: 66px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 600px){
    .page_confirmacao .frase {
        font-size: 24px;
    }
}

@media only screen and (max-width: 430px){
    .page_confirmacao .frase {
        font-size: 20px;
    }
}