/* RESET */

*{
box-sizing:border-box;
margin:0;
padding:0;
}

/* BODY */

body{

font-family: 'Inter', sans-serif;
background:#f6f7fb;
display:flex;
justify-content:center;
align-items:center;
min-height:100vh;

}

/* CONTAINER */

.container{

width:100%;
max-width:420px;
padding:20px;

}

/* CARD */

.card{

background:#ffffff;
border-radius:20px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;

}

/* TITULOS */

.logo{

font-size:22px;
font-weight:600;
margin-bottom:8px;

}

.sub{

color:#777;
font-size:14px;
margin-bottom:25px;

}

/* VALOR */

.valor{

font-size:34px;
font-weight:600;
color:#00a650;
margin-bottom:15px;

}

/* INPUT */

input{

width:100%;
padding:16px;
font-size:18px;
border-radius:12px;
border:1px solid #ddd;
margin-bottom:20px;
text-align:center;

}

/* BOTÃO */

button{

width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#00a650;
color:white;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:.2s;

}

button:hover{

background:#009e4d;

}

/* QR CODE */

.qrcode{

margin:20px 0;

}

.qrcode img{

width:230px;
border-radius:12px;

}

/* CODIGO PIX */

.pixcode{

background:#f1f3f6;
padding:12px;
border-radius:10px;
font-size:12px;
word-break:break-all;
margin-bottom:10px;

}

/* STATUS */

.status{

margin-top:18px;
font-weight:600;
font-size:15px;

}

/* TIMER */

.timer{

margin-top:10px;
color:#666;

}

/* FOOTER */

.footer{

margin-top:20px;
font-size:12px;
color:#999;

}

/* LOADING DOTS */

.loader{

margin-top:10px;

}

.dot{

height:8px;
width:8px;
margin:0 3px;
background:#00a650;
border-radius:50%;
display:inline-block;
animation:bounce 1.4s infinite ease-in-out both;

}

.dot:nth-child(2){
animation-delay:.2s;
}

.dot:nth-child(3){
animation-delay:.4s;
}

@keyframes bounce{

0%,80%,100%{transform:scale(0)}
40%{transform:scale(1)}

}

/* RESPONSIVO */

@media(max-width:480px){

.card{

padding:25px;

}

.qrcode img{

width:200px;

}

}