/*--- imports --->*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Predefinicoes*/
.centralize {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.padding {
    padding: 10px;
}

.Space{
    height: 10px;
}

/*--- Style ---*/
body {
    background-color: #252D59;
    padding-bottom: 70px;
    font-family: 'Roboto', sans-serif;
}

.smallHeader {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding-top: 10px;
    padding-bottom: 10px;
    height: 70px;
    width: 98%;
    font-size: 2rem;
    text-align: center;
    overflow: hidden;
}

.formBox {
    width: 98%;
    border: none;
    border-radius: 10px;
    background-color: #FDFDFE;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: justify;
}

.form {
    padding-left: 10px;
    padding-right: 10px;
}


/*--- Conteudo ---*/
.containerForm {
    gap: 10px;
    flex-wrap: nowrap;
}

.textBox {
    background-color: #FDFDFE;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    width: 98%;
    font-size: 1.08rem;
    text-align: center;
    text-align: justify;
}

/*---Botao avancar---*/
.button {
    background-color: #29D967;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: none;
    padding: 20px;
}

/*-- nav-bar--*/
.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #F29F05;
    border-radius: 10px;
}

.nav-link img {
    width: 24px;
    height: auto;
}

/*--- progress bar ---*/
.progress-bar {
    width: 98%;
    height: 40px;
    border: 2px solid whitesmoke;
    border-radius: 10px;
    overflow: hidden;
}

.progress-stage {
    width: 0;
    height: 100%;
    background-color: #02009A;
    transition: width  2s;
}

.stage-1 .progress-stage {
    width: 25%;
    background: linear-gradient(to right, #02009A 0%, #06e7d4e8 100%);
}

.stage-2 .progress-stage {
    width: 50%;
    background: linear-gradient(to right, #02009A 0%, #06e7d4e8 50%, #96FF6E 100%);
}

.stage-3 .progress-stage {
    width: 75%;
    background: linear-gradient(to right, #02009A 0%, #06e7d4e8 33.3%, #96FF6E 66.6%, #ffee00f3 100%);
}

.stage-4 .progress-stage {
    width: 100%;
    background: linear-gradient(to right, #02009A 0%, #06e7d4e8 25%, #96FF6E 50%,#ffee00f3 75%, #ff0d00 100%);
}

/*--- popup ---*/
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background-color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    animation: popupAnimation 0.5s ease-in-out forwards;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-height: calc(100% - 175px);
    overflow-x: auto;
}

@keyframes popupAnimation {
    from {
        opacity: 0;
        transform: translate(-50%, 100%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes popupCloseAnimation {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, 100%);
    }
}

.popup h1 {
    font-size: 2rem;
}

.popup p {
    font-size: 1rem;
}

/*--- ErrorPopup ---*/
.popUp {
    display: none;
    position: fixed;
    top: -80px;
    background-color: #F29F05;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    color: white;
    animation: slideDown 0.5s forwards;
  }
  
  @keyframes slideDown {
    from {
      top: -80px;
    }
    to {
      top: -5px;
    }
  }
  
/*--- Media Queries(em producao)---*/

@media (min-width: 512px) {
    body {}
}

@media (max-width: 512px) {

}