*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:url('../img/bg.jpg') center center no-repeat;
    background-size:cover;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.container{
    width:95%;
    max-width:400px;
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.logo{
    text-align:center;
    margin-bottom:20px;
}

.logo img{
    width:140px;
}

h1,h2{
    text-align:center;
    margin-bottom:20px;
    color:#222;
}

.btn{
    display:block;
    width:100%;
    padding:15px;
    margin:10px 0;
    border:none;
    border-radius:8px;
    background:#007bff;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    text-decoration:none;
    text-align:center;
}

.btn:hover{
    opacity:.9;
}

.btn.pix{
    background:#00a650;
}

.btn.voucher{
    background:#ff9800;
}

input, select{
    width:100%;
    padding:14px;
    margin:8px 0;
    border:1px solid #ccc;
    border-radius:8px;
}

.plano{
    border:1px solid #ddd;
    border-radius:10px;
    padding:15px;
    margin-bottom:10px;
    text-align:center;
}

.plano h3{
    margin-bottom:10px;
}

.ticket{
    width:58mm;
    padding:10px;
    border-bottom:1px dashed #000;
    text-align:center;
}