:root{
    --cor-principal:#FF842A;
    --cor-fundo:#121212;
}

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

body{
    font-family:'Epilogue',sans-serif;
    background:var(--cor-fundo);
    min-height:100vh;
    overflow-x:hidden;
}

/* BACKGROUND */
.background{
    position:fixed;
    inset:0;
    background:url('https://img.freepik.com/free-photo/businesswoman-leaning-car-window-texting-message-phone-smiling-happy_197531-22680.jpg') center/cover no-repeat;
    z-index:1;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(18,18,18,.6);
    z-index:2;
}

/* TEXTO MARCA */
.header-text{
    position:relative;
    z-index:3;
    color:#fff;
    margin:40px auto 25px;
    text-align:center;
}

.logo{
    font-size:36px;
    font-weight:900;
    font-style:italic;
}

.slogan{
    font-size:24px;
    font-weight:900;
}

/* CONTAINER PRINCIPAL */
.container{
    position:relative;
    z-index:3;
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    border:5px solid var(--cor-principal);
    width:95%;
    max-width:420px;
    margin:0 auto 40px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.7);
}

/* TÍTULO */
h1{
    color:var(--cor-principal);
    font-size:28px;
    font-weight:900;
    margin-bottom:30px;
}

/* INPUT */
input{
    width:100%;
    padding:16px;
    border-radius:15px;
    border:2px solid #ddd;
    font-size:17px;
    margin-bottom:25px;
    text-align:center;
}

/* BOTÃO PRINCIPAL */
button{
    width:100%;
    padding:16px;
    border-radius:50px;
    border:none;
    background:var(--cor-principal);
    color:#fff;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

button:hover{
    transform:translateY(-2px);
}

/* RESULTADO */
.resultado{
    margin-top:25px;
    padding:25px;
    border-radius:20px;
    border:4px solid var(--cor-principal);
}

/* BOTÕES RESULTADO */
.botoes{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.btn{
    padding:14px;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
}

.btn-pdf{background:#28a745}
.btn-img{background:#17a2b8}
.btn-limpar{background:#6c757d}

/* ERRO */
.erro{
    color:#dc3545;
    font-weight:700;
    margin-top:20px;
}

/* LOGO CONSULTA */
.logo-consulta{
    display:block;
    margin:0 auto 18px;
    max-width:200px;
    width:100%;
    height:auto;
}

/* ===== RESPONSIVO ===== */
@media(max-width:768px){

    .header-text{
        margin-top:30px;
    }

    .logo{
        font-size:30px;
    }

    .slogan{
        font-size:20px;
    }

    h1{
        font-size:24px;
    }

    .container{
        padding:35px 20px;
    }
}

@media(max-width:480px){

    .logo-consulta{
        max-width:160px;
        margin-bottom:15px;
    }
}
