*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#00c896;
    --primary-hover:#00b285;
    --text:#ffffff;
    --glass:rgba(255,255,255,.08);
    --border:rgba(255,255,255,.12);
}

body{
    font-family:'Inter',sans-serif;
    min-height:100vh;
    color:var(--text);
    overflow-x:hidden;
}

/* BACKGROUND */

.bg{
    position:fixed;
    inset:0;
    background:url("images/bencao_background.jpg") center center no-repeat;
    background-size:cover;
    filter:blur(3px);
    transform:scale(1.1);
    z-index:-2;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.15);
    z-index:-1;
}

/* LAYOUT */

.container{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

.card{
    width:100%;
    max-width:820px;

    background:rgba(5, 161, 96, 0.95);

    backdrop-filter:blur(3px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:40px;

    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

/* HEADER */

.header{
    text-align:center;
    margin-bottom:35px;
}

.badge{
    display:inline-block;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(255,255,255,.1);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;
}

.header h1{
    font-size:2rem;
    margin-bottom:10px;
}

.header p{
    opacity:.8;
}

.price{
    display:inline-block;

    margin-top:18px;

    background:var(--primary);

    padding:10px 20px;

    border-radius:999px;

    font-weight:700;

    font-size:1.1rem;
}

/* FORM */

.grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group.full{
    grid-column:1/-1;
}

/* LABELS IGUAIS AOS TÍTULOS */

.input-group label,
.selection-box h3,
.info-box h3{
    color:#fff;
    font-weight:700;
    font-size:1rem;
    margin-bottom:10px;
}

.input-group input{
    padding:14px 16px;

    border-radius:14px;

    border:1px solid var(--border);

    background:rgba(255,255,255,.08);

    color:white;

    outline:none;

    transition:.3s;
}

.input-group input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(0,200,150,.15);
}

.input-group input::placeholder{
    color:rgba(255,255,255,.45);
}

/* ESCOLHA DA GRAVAÇÃO */

.selection-box{
    margin-top:30px;
}

.options-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.option-card{
    cursor:pointer;
}

.option-card input{
    display:none;
}

.option-content{
    height:100%;

    min-height:140px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    transition:.3s;
}

.option-content:hover{
    transform:translateY(-3px);
}

.option-card input:checked + .option-content{
    border:2px solid var(--primary);

    background:rgba(0,200,150,.12);

    box-shadow:0 0 25px rgba(0,200,150,.2);
}

.date{
    font-size:.85rem;
    opacity:.75;
    margin-bottom:8px;
}

.title{
    font-weight:700;
    font-size:1rem;
    line-height:1.4;
}

.card-price{
    margin-top:12px;

    background:var(--primary);

    padding:6px 14px;

    border-radius:999px;

    font-weight:700;
}

/* INFO */

.info-box{
    margin-top:30px;

    padding:22px;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);
}

.info-box h3{
    margin-top:15px;
}

.info-box h3:first-child{
    margin-top:0;
}

.info-box p{
    color:rgba(255,255,255,.85);
    line-height:1.6;
}

/* CHECKBOX */

.checkbox{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-top:25px;
}

.checkbox label{
    color:white;
    font-size:.95rem;
}

/* BOTÃO */

button{
    width:100%;

    margin-top:25px;

    border:none;

    border-radius:14px;

    background:var(--primary);

    color:white;

    font-size:1rem;

    font-weight:700;

    padding:16px;

    cursor:pointer;

    transition:.3s;
}

button:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

/* MOBILE */

@media(max-width:768px){

    .card{
        padding:25px;
    }

    .grid{
        grid-template-columns:1fr;
    }

    .options-row{
        grid-template-columns:1fr;
    }

    .header h1{
        font-size:1.6rem;
    }
}







/* ===== SUCCESS PAGE ===== */

.success{
    text-align:center;
    padding:50px 30px;
}

.check{
    width:80px;
    height:80px;
    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(0,200,150,.15);

    border:2px solid #00c896;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;
    color:#00c896;
    font-weight:800;
}

.success h1{
    font-size:1.8rem;
    margin-bottom:10px;
}

.success p{
    color:rgba(255,255,255,.85);
    margin-bottom:10px;
    line-height:1.6;
}

.summary{
    margin:20px 0;

    padding:18px;

    border-radius:16px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    text-align:left;
}

.summary p{
    margin:5px 0;
}

/* BOTÃO LINK */

.btn{
    display:inline-block;

    margin-top:20px;

    padding:14px 22px;

    border-radius:12px;

    background:#00c896;

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn:hover{
    background:#00b285;
    transform:translateY(-2px);
}