
html, body{
    padding: 0;
    margin: 0;
    background-color: #009688FF;
    width: 100%;
    height: 100%;
    min-height: 667px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

*{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

main{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 920px;
    border: 1px solid white;
}

header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 50px;

}

h1{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: white;
    font-size: 20px;
}

.btn-back{
    border: 1px solid transparent;
    background-color: transparent;
    color: white; 
}

.section-img{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 8px;
    width: 94%;
    height: 65%;
}

img{
    width: 100%;
    height: 100%;
}

.section-inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 25%;
}

.div-inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 10px;
}

label{
    font-weight: 500;
}

.valor{
    width: 94%;
    height: 40px;
    border: 1px solid white;
    border-radius: 8px;
    outline: none;
    color: black;
    font-weight: 500;
    text-align: center;
}

.valor:hover{
    border: 1px solid #FE9800FF;
}

.btn-proximo{
    width: 60%;
    height: 45px;
    border: 1px solid transparent;
    outline: none;
    border-radius: 10px;
    background-color:#FE9800FF;
    color:white;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}

.btn-proximo:active, .btn-back:active{
    opacity: 0.9;
}

.divNotificacao{
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 80px;
    background-color: rgba(254, 152, 0, 0.9);
    position: absolute;
    border-radius: 6px;
    top: calc(50% - 40px);
    left: 10%;
    animation: deslizar 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index:1;

}

@keyframes deslizar{
    0%{
        transform: translateX(50px);
        opacity: 0;
    }

    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}

.divNotificacao::before{
    content:"";
    position: absolute;
    width: 23px;
    height: 5px;
    left: 0;
    bottom: 0;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.24);
    animation: time 3s  forwards;
    }

@keyframes time {
    0%{
        width: 0;
    }
    100%{
        width: 100%;
     }
    
}

.pNotificacao{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size:  18px;
    color: white;
    text-align: center;
}

.resultado{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    position: absolute;
    background-color:transparent;
    width: 100%;
    height: 100%;
    max-width: 430px;
    min-height: 667px;
    z-index: 1;
}

p{
    font-size: 15px;
    text-align: justify;
    font-weight: 400;
}

a{
    
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    cursor:pointer;
    text-decoration: none;
    color: black;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FE9800FF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    transform: translate(-50%, -50%);
    display: flex;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.principal-card-resultado{
    background-color:transparent;
    width: 100%;
    max-width: 430px;
    min-width: 375px;
    height: 80%;
    min-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    position: absolute;
}

.cardImg{
    background-color: white;
    width:320px ;
    height: 65%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    -webkit-box-shadow: 0px 0px 15px -4px #dbcfcf; 
    box-shadow: 0px 0px 15px -4px #ece2e2;
    animation: .5s linear 1s infinite alternate animar;
}

@keyframes animar {
    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.01);
    }
}

.cardPInformacao{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(254, 152, 0);
    width:140px;
    height: 35px;
    position: absolute;
    left: 20px;
    top: 30px;
    border-radius: 3px;
    z-index: 1;
    animation: .5s linear 1s infinite alternate slidein;
}

@keyframes slidein{
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}


.pInformacao, .pInformacaoAbaixo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

.cadrImagem{
    width: 300px;
    height: 80%;
    background-repeat: no-repeat;
}

.cardInformacaoAbaixo{
    width: 320px;
    height: 60px;
    background-color:#00821A;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.divResultado{
    display: flex;
    background-color:transparent;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 80%;
    height: 33%;
    position: absolute;
    bottom: 20px;
    z-index: 1;
}