@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=DM+Serif+Display&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --primary:#ffffff;
    --secondary:#949293;
    --background:#5c1419;
    --text:#ffffff;
    --input-bg:rgba(255,255,255,.55);
    --input-border:rgba(255,255,255,.18);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Poppins,sans-serif;
    background:
    radial-gradient(
        circle at top,
        #7a1b22,
        #5c1419 60%
    );
    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    padding:20px;
    color:var(--text);
}

.container{
    width:100%;
    max-width:960px;
    margin:auto;
    background:#858384;
    border-radius:28px;
    padding:40px;
    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

/* =========================
   LOGO
========================= */

.brand-area{
    text-align:center;
    margin-bottom:40px;
}

.brand-area h1{
    font-family:'Great Vibes', cursive;
    font-size:5.5rem;
    font-weight:400;
    color:white;
    margin-bottom:10px;
    line-height:1;
    text-shadow:0 2px 8px rgba(0,0,0,.15);
}

.brand-subtitle{
    font-family:Poppins,sans-serif;
    font-style:italic;
    font-size:1rem;
    color:rgba(255,255,255,.85);
}

/* =========================
   TÍTULOS
========================= */

h2{
    color:#1f1f1f;
    margin-top:30px;
    margin-bottom:15px;
    font-size:1.8rem;
}

.section{
    margin-bottom:30px;
}

label{
    display:block;
    font-weight:600;
    margin-top:15px;
    margin-bottom:6px;
    color:#2b2b2b;
}

/* =========================
   INPUTS
========================= */

input[type="text"],
input[type="password"],
input[type="tel"],
textarea,
select{
    width:100%;
    margin-bottom:18px;
    padding:14px;
    border-radius:14px;
    border:1px solid var(--input-border);
    background:var(--input-bg);

    color:#1f1f1f;

    font-size:1rem;
    font-family:Poppins,sans-serif;
    outline:none;
    transition:.25s;
}

input::placeholder,
textarea::placeholder{
    color:#555;
}

input:focus,
textarea:focus,
select:focus{
    border-color:rgba(255,255,255,.5);
    background:rgba(255,255,255,.12);
}

textarea{
    resize:vertical;
    min-height:100px;
}

input[type="color"]{
    width:100%;
    height:55px;
    border:none;
    border-radius:14px;
    cursor:pointer;
}

/* =========================
   CHECKBOXES
========================= */

.checkbox-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:10px;
}

.checkbox-card{
    border:1px solid rgba(255,255,255,.15);
    border-radius:14px;
    padding:12px;
    background:rgba(255,255,255,.05);
}

.checkbox-card label{
    margin:0;
    cursor:pointer;
}

/* =========================
   BOTÕES
========================= */

button{
    cursor:pointer;
}

.generate-btn{
    width:100%;
    border:none;
    border-radius:16px;
    padding:18px;
    font-size:1.1rem;
    font-weight:700;
    background:#5c1419;
    color:white;
    cursor:pointer;
    transition:.25s;

    box-shadow:
    0 10px 25px rgba(92,20,25,.35);
}

.generate-btn:hover{
    background:#741c22;
    transform:translateY(-3px);
}

.generate-btn:active{
    transform:translateY(0);
}

.option-action-btn{
    border:none;
    background:#5c1419;
    color:white;
    padding:10px 18px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.option-action-btn:hover{
    background:#741c22;
    transform:translateY(-2px);
}

/* =========================
   CAIXA INFO
========================= */

.info-box{
    margin-top:25px;
    padding:20px;
    border-radius:15px;
    background:rgba(255,255,255,.08);
    border:1px dashed rgba(255,255,255,.25);
    line-height:1.6;
}

/* =========================
   SUCESSO
========================= */

.success-box{
    margin-top:25px;
    padding:25px;
    background:rgba(255,255,255,.08);
    border-radius:20px;
    text-align:center;
}

.success-box input{
    margin:15px 0;
}

.success-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.success-buttons button{
    min-width:180px;
}

/* =========================
   PREVIEW
========================= */

.preview-card{
    margin:30px 0;
    padding:25px;
    border-radius:20px;
    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.04)
    );
    border:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.preview-header{
    font-size:.9rem;
    font-weight:700;
    color:rgba(255,255,255,.8);
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.preview-card h2{
    margin-bottom:20px;
}

.preview-buttons{
    margin-top:20px;
}

.preview-buttons button{
    border:none;
    padding:12px 22px;
    border-radius:12px;
    font-weight:700;
}

#previewYes{
    background:#5c1419;
    color:white;
}

#previewNo{
    background:white;
    color:#5c1419;
}

#previewOptions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:20px;
    margin-bottom:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .container{
        padding:25px;
    }

    .brand-area h1{
    font-size:4.2rem;
}

    .brand-subtitle{
        font-size:.9rem;
    }

    h2{
        font-size:1.5rem;
    }
}

@media(max-width:480px){

    .brand-area h1{
    font-size:3.5rem;
}

    .container{
        padding:20px;
        border-radius:20px;
    }

    .success-buttons{
        flex-direction:column;
    }

    .success-buttons button{
        width:100%;
    }
}

/* =========================
   ACCORDION
========================= */

.accordion{
    margin-bottom:20px;
}

.accordion summary{
    list-style:none;
    cursor:pointer;

    padding:18px 0;

    font-size:1.25rem;
    font-weight:700;

    color:#1f1f1f;

    border-bottom:
    2px solid rgba(0,0,0,.08);

    user-select:none;

    transition:.25s;
}

.accordion summary:hover{
    color:#5c1419;
}

.accordion summary::-webkit-details-marker{
    display:none;
}

.accordion summary::after{
    content:"▼";
    float:right;
    transition:.25s;
}

.accordion[open] summary::after{
    transform:rotate(180deg);
}

.accordion-content{
    padding-top:20px;
}

/* =========================
   VAMORI FOOTER
========================= */

.vamori-footer{
    margin-top:35px;
    text-align:center;
    font-size:.85rem;
    color:rgba(31,31,31,.65);
}

.vamori-footer a{
    color:#5c1419;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.vamori-footer a:hover{
    opacity:.75;
}

/* =========================
   LOGIN V7
========================= */

.login-header{
    text-align:center;
    margin-bottom:15px;
}

.logo-heart{
    font-size:2.4rem;
    margin-bottom:10px;
}

.login-logo{
    font-family:'Great Vibes',cursive;
    font-size:9rem;
    font-weight:400;
    color:white;
    line-height:1;
    margin-bottom:5px;

    text-shadow:
    0 4px 15px rgba(0,0,0,.25);
}

.login-subtitle{
    font-size:1rem;
    font-style:italic;
    color:rgba(255,255,255,.9);
}

.login-card{

    width:100%;
    max-width:600px;

    padding:35px;

    border-radius:28px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:
    blur(10px);

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.35);
}

.login-card h2{
    color:white;
    text-align:center;
    margin-bottom:25px;
}

.login-btn{

    width:100%;

    margin-top:8px;

    border:none;

    border-radius:16px;

    padding:18px;

    font-size:1.1rem;

    font-weight:700;

    background:#949293;

    color:white;

    transition:.25s;

    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.login-btn:hover{

    background:#9a9899;

    transform:translateY(-2px);
}

.login-link{

    margin-top:15px;

    text-align:center;

    font-size:.95rem;

    color:rgba(255,255,255,.8);

}

.login-link a{

    color:white;

    font-weight:700;

    text-decoration:none;

}

.login-link a:hover{

    text-decoration:underline;

}