@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800&family=Poppins:wght@500;600;700;800&display=swap');

* { box-sizing: border-box; }

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0 0 40px;
    background: #fff;
    color: #333;
    font-family: 'Nunito Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

.logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
    margin: 22px auto 18px;
}

.landing-page { width: 100%; }

.conteudo-principal {
    width: min(600px, calc(100% - 32px));
    margin: 0 auto;
}

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

.headline {
    width: 100%;
    max-width: 760px;
    margin: 24px auto 0;
    padding: 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.45px;
    text-align: center;
    color: #622A27;
}

.headline .tag {
    display: inline-block;
    color: #fff;
    font-weight: 800;
    background: rgb(240, 20, 64);
    padding: 1px 8px 2px;
    border-radius: 10px;
}

.data {
    width: 100%;
    max-width: 760px;
    margin: 13px auto 25px;
    padding: 0 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #622A27;
}

.sub-headline,
.sub-headline-thank-you {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: #622A27;
}

.sub-headline { margin-top: -20px; }

.formulario {
    width: min(100% - 32px, 500px);
    margin: 0 auto;
    padding: 0;
}

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

.formulario input::placeholder { color: #999; }

.formulario select {
    color: #777;
    cursor: pointer;
}

.formulario input:focus,
.formulario select:focus {
    border-color: #b9a4a1;
    box-shadow: 0 0 0 3px rgba(98, 42, 39, .08);
}

 .formulario input, 
 .formulario select 
   { 
       width: 100%; 
       height: 54px; 
       min-height: 54px; 
       max-height: 54px; 
       padding: 0 15px; 
       border: 1px solid #ddd; 
       border-radius: 9px; font-family: 'Nunito Sans', sans-serif; 
       font-size: 16px; 
       font-weight: 500; 
       line-height: normal; box-sizing: border-box; 
      
   }
   /* Mantém o select visualmente com a mesma altura dos inputs */ 
  .formulario select 
  {
         appearance: none; -webkit-appearance: none; -moz-appearance: none; background-color: #fff; display: flex; align-items: center; 
  } 

.formulario button {
    width: 100%;
    min-height: 60px;
    margin-top: 4px;
    padding: 14px 20px;
    border: 0;
    border-radius: 10px;
    background: #16A34A;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(22, 163, 74, .16);
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.formulario button:hover {
    transform: translateY(-1px);
    filter: brightness(.97);
    box-shadow: 0 8px 20px rgba(22, 163, 74, .22);
}

.formulario button:active { transform: translateY(0); }

.btn-whatsapp {
    display: block;
    width: min(90%, 500px);
    margin: 40px auto;
    padding: 20px 30px;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 211, 102, .35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

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

@media (max-width: 768px) {
    body { padding-bottom: 25px; }

    .logo {
        max-width: 200px;
        margin: 16px auto 14px;
    }

    .conteudo-principal {
        width: min(100% - 24px, 600px);
    }

    .banner { border-radius: 15px; width:350px; }

    .headline {
        margin-top: 19px;
        font-size: clamp(21px, 5vw, 28px);
        line-height: 1.31;
        letter-spacing: -.25px;
        padding: 0 3px;
    }

    .headline .tag {
        padding: 1px 7px 2px;
        border-radius: 9px;
    }

    .data {
        margin-top: 11px;
        margin-bottom: 21px;
        font-size: 16px;
    }

    .formulario {
        width: 350px;
    }

    .formulario input,
    .formulario select { min-height: 55px; }

    .formulario button {
        min-height: 58px;
        font-size: 16px;
    }

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

@media (max-width: 480px) {
    .logo {
        max-width: 175px;
        margin: 13px auto 11px;
    }

    .conteudo-principal { width: calc(100% - 20px); }

    .banner { border-radius: 12px; }

    .headline {
        margin-top: 17px;
        font-size: 21px;
        line-height: 1.34;
        letter-spacing: -.15px;
    }

    .headline .tag {
        padding: 1px 6px 2px;
        border-radius: 8px;
    }

    .data {
        margin-top: 10px;
        margin-bottom: 19px;
        font-size: 15px;
    }

    .formulario 
    { width: 350px;
        
    }

    .formulario form { gap: 11px; }



    .formulario button {
        min-height: 56px;
        margin-top: 3px;
        padding: 12px 15px;
        border-radius: 9px;
        font-size: 16px;
    }

    .btn-whatsapp {
        width: calc(100% - 20px);
        margin-top: 28px;
        font-size: 18px;
        padding: 17px 18px;
        border-radius: 10px;
    }
}
