.banner 
{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.logo 
{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Celulares */
@media (max-width: 768px)
{
    .logo
    {
        max-width: 170px; /* ajuste este valor se desejar */
        margin: 12px auto;
    }
    
    .headline
    {
       font-size:19px;
    }
}

/* Computadores */
@media (min-width: 800px)
{
    .headline
    {
       font-size:24px;
    }
    
   .logo 
   {  
       height: 100px;
       width: 250px;
       margin-bottom: 20px;
   }
}

.headline
{
    max-width: 588px;
    margin:13px auto;
    padding:0 20px; 
    font-weight:700;
    line-height:1.5;
    text-align:center;
    color:#622A27;
}

.tag 
{
  color: white;
  font-weight:900;
  background-color: rgb(240, 20, 64);
  padding-right: 3px;
  padding-left: 7px;
  border-radius: 12px;
}

.data
{
    font-weight:500;
    line-height:1.5;
    text-align:center;
    color:#622A27;
}

.sub-headline
{
    max-width:900px;
    margin:20px auto;
    padding:0 20px; 
    font-size:18px;
    font-weight:500;
    line-height:1.4;
    text-align:center;
    color:#622A27;
    margin-top: -20px;
}

.sub-headline-thank-you
{
    max-width:900px;
    margin:20px auto;
    padding:0 20px; 
    font-size:18px;
    font-weight:500;
    line-height:1.4;
    text-align:center;
    color:#622A27;
}

.formulario
{
    width:100%;
    max-width:450px;
    margin:20px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.formulario form
{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.formulario input
{
    width:100%;
    padding:16px;
    border:1px solid #DDD;
    border-radius:8px;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}

.formulario input:focus
{
    border-color:#3B82F6;
}

.formulario button
{
    width:100%;
    padding:18px;
    border:none;
    border-radius:8px;
    background:#16A34A;
    color:#FFF;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.formulario button:hover
{
    background:#15803D;
}

.btn-whatsapp
{
    display:block;
    width:90%;
    max-width:500px;

    margin:40px auto;

    background:#25D366;
    color:#fff;

    text-decoration:none;
    text-align:center;

    font-family:Verdana, Arial, sans-serif;
    font-size:24px;
    font-weight:bold;

    padding:22px 30px;

    border-radius:12px;

    transition:all .25s ease;

    box-shadow:0 6px 18px rgba(37,211,102,.35);

    box-sizing:border-box; /* <-- ADICIONE ESTA LINHA */
}

@media (max-width: 768px)
{

    .btn-whatsapp{
        width:95%;
        font-size:18px;
        padding:18px 20px;
    }

}

.btn-whatsapp:hover{
    background:#1EBE5D;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,211,102,.45);
}

.btn-whatsapp:active{
    transform:scale(.98);
}


