
* {
    box-sizing: border-box;
}


.prof {display: none; }

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
   =============================== */

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

/* ===============================
   CONTEÚDO PRINCIPAL
   =============================== */

.landing-page {
    width: 100%;
}

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

/* ===============================
   BANNER
   =============================== */

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

/* ===============================
   HEADLINE
   =============================== */

.headline {
    width: 100%;
    max-width: 760px;
    margin: 24px auto 0;
    padding: 0 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 3vw, 18px);
    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
   =============================== */

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

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

/* ===============================
   FORMULÁRIO
   =============================== */

.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;
    display: none;
}

.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: none;
    align-items: center;
}

/* ===============================
   BOTÃO DO FORMULÁRIO
   =============================== */

.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);
}

/* ===============================
   BOTÃO DURANTE O ENVIO
   =============================== */

.formulario button.enviando,
.formulario button:disabled {
    background: #999;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.85;
    transform: none;
    filter: none;
    box-shadow: none;
    pointer-events: none;
}

/* ===============================
   BOTÃO WHATSAPP
   =============================== */

.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);
}

/* ===============================
   TABLETS
   =============================== */

@media (max-width: 768px) {

    body {
        padding-bottom: 25px;
    }

    .logo {
        max-width: 150px;
        margin: 14px auto 12px;
    }

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

    .banner {
        border-radius: 14px;
        width: 240px;
    }

    .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: 15px;
    }

    .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;
    }
}

/* ===============================
   CELULARES
   =============================== */

@media (max-width: 480px) {

    .logo {
        max-width: 130px;
        margin: 11px auto 10px;
    }

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

    .banner {
        width: 240px;
        border-radius: 11px;
    }

    .headline {
        margin-top: 17px;
        font-size: 16px;
        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: 14px;
    }

    .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;
    }
}