.FORMULARIO{
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 99999;
}
.ESCONDIDO{
    display: none;
}
.MOSTRADO{
    display: block;
    transform: translateY(-100px);
    animation: show 200ms cubic-bezier(0.175, 0.885, 0.32, 1.1) 00ms forwards;
    
}

@keyframes show {
    to{
        transform: translateY(0px);
        
    }
}
.FORMULARIO_FLEX{
    width: 100%;
    height: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}
.FORMULARIO_FLEX form{
    width: 600px;
    height: fit-content;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 40px rgb(110, 110, 110);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 10px ;
}
.FORMULARIO_FLEX label{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
.FORMULARIO_FLEX p {
    margin-top: 5px;
    font-size: 10px;
    text-align: center;
}
.FORMULARIO_FLEX label {
    font-size: 15px;
}

.FORMULARIO_FLEX h1 {
    font-size: 19px;
}

.labelGroup{
    display: flex;
    width: 100%;
    
}
.labelGroup label{
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.labelGroup label input{
    
}
.labelMaior{
    flex:2;
}
.labelNormal{
    flex:1;
}
.labelMaior input, select{
    width: 100%;
}
.labelNormal  input, select{
    width: 100%;
}
.buttonsGroup{
    display: flex;
    justify-content: center;
    width: 100%;
}
.buttonsGroup button{
    margin: 0px 10px;
}

#hamburguer{
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
#hamburguer .line{
    display: block;
    width: 40px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin-block: 10px;
    border-radius: 4px;
    transition: transform .5s, opacity .25s;
}
.growSection{
    height: 0px;
    transform: translateY(-101%);
    transition: 100ms cubic-bezier(0.95, 0.05, 0.795, 1.15);
}
.growSection.active{
    height: 270px;
    transform: translateY(0px);
}
#growSectionUl a{
    text-decoration: none;
    color: black;
}
#growSectionUl {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    transition: 140ms cubic-bezier(0.95, 0.05, 0.795, 0.1);
    transform: translateY(-101%);
    padding: 0;
    margin: 0;
    color: white;
}
#growSectionUl.active{
    transform: translateY(0%);
    color: white;
}
#growSectionUl a{
    color: white;
}
.headerMobile li{
    margin: 20px;
    text-decoration: none;
    font-size: 18px;
}

#hamburguer.active .line:nth-child(1){
    transform: translateY(13px) rotate(45deg);
}
#hamburguer.active .line:nth-child(2){
    opacity: 0;
}
#hamburguer.active .line:nth-child(3){
    transform: translateY(-13px) rotate(-45deg);
}
.concorrer_a_promocao{
    background-color: #173c77;
    border-radius: 5px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.63);
    padding: 3px;
    color:white;
}