/* ==========================
   SPEED HOST - COMPRAR
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0b0b0b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    padding:30px;
}

.container{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.box{
    width:100%;
    max-width:560px;
    background:#171717;
    border:1px solid rgba(255,208,0,.25);
    border-radius:20px;
    padding:40px;
    box-shadow:0 0 25px rgba(255,208,0,.15);
}

/* LOGO */

.logo{
    display:block;
    width:300px;
    max-width:100%;
    margin:0 auto 35px;
}

/* TITULO */

h1{
    text-align:center;
    color:#ffd000;
    font-size:40px;
    margin-bottom:30px;
}

/* PLANO */

.plano{
    background:#101010;
    border-left:5px solid #ffd000;
    padding:20px;
    border-radius:12px;
    margin-bottom:30px;
}

.plano h2{
    font-size:28px;
    margin-bottom:10px;
}

.plano h3{
    color:#ffd000;
    font-size:38px;
}

/* PIX */

.pix{
    margin-bottom:30px;
}

.pix h2{
    margin-bottom:15px;
}

.pix input{
    width:100%;
    padding:15px;
    background:#111;
    border:1px solid #333;
    border-radius:10px;
    color:#fff;
    font-size:16px;
    margin-bottom:15px;
}

.pix button{
    width:100%;
    padding:15px;
    background:#ffd000;
    color:#000;
    border:none;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.pix button:hover{
    background:#ffc400;
}

/* INFORMAÇÕES */

.info{
    background:#111;
    border-left:5px solid #ffd000;
    padding:20px;
    border-radius:10px;
    margin-bottom:25px;
}

.info p{
    margin:10px 0;
    color:#ddd;
    line-height:24px;
}

/* BOTÃO DISCORD */

.discord{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#5865F2;
    color:#fff;
    padding:16px;
    border-radius:10px;
    font-weight:bold;
    margin-bottom:15px;
    transition:.3s;
}

.discord:hover{
    background:#4752c4;
}

/* BOTÃO VOLTAR */

.voltar{
    display:block;
    text-align:center;
    color:#ffd000;
    text-decoration:none;
    font-weight:600;
}

.voltar:hover{
    text-decoration:underline;
}

/* RESPONSIVO */

@media(max-width:600px){

.box{
    padding:25px;
}

.logo{
    width:220px;
}

h1{
    font-size:30px;
}

.plano h2{
    font-size:22px;
}

.plano h3{
    font-size:30px;
}

.pix input,
.pix button,
.discord{
    font-size:15px;
}

}
.avaliacao{
    margin:30px 0;
    padding:20px;
    background:#111;
    border-radius:12px;
    text-align:center;
}

.avaliacao h2{
    color:#ffd000;
    margin-bottom:10px;
}

.estrelas{
    margin-top:15px;
}

.estrelas button{
    background:none;
    border:none;
    font-size:35px;
    cursor:pointer;
    transition:.2s;
}

.estrelas button:hover{
    transform:scale(1.2);
}