/* ======== CONFIG BASE ======== */

body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ======== WRAPPER CENTRAL ======== */

.center-wrapper {
    text-align: center;
    max-width: 700px;
    padding: 80px 20px 40px;
}

/* ======== TÍTULOS ======== */

.main-slugtitle {
    font-family: 'Parkinsans', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0 0 20px;
    color: #DE0048;
}

.main-title {
    font-family: 'Parkinsans', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 20px;
    color: #111;
}

.question-title {
    font-size: 42px !important;
    font-weight: 700 !important;
}

/* ======== SUBTÍTULO ======== */

.subtitle {
    font-size: 20px;
    color: #444;
    margin: 0 auto 40px;
    max-width: 720px;
}

/* ======== FORM (DUAS COLUNAS) ======== */

.basic-form {
    max-width: 620px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row input {
    flex: 1;
}

/* inputs em geral */
.basic-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

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

.btn-main {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background: #DE0048;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    transition: .2s;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.btn-main:hover {
    opacity: .85;
}

.result-text {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

/* Corrige centralização e largura do botão no resultado */
.center-wrapper {
    width: 100%;
    margin: 0 auto;
}

.btn-main {
    width: 100%;
    box-sizing: border-box;
    display: block;
}


/* ======== RESPONSIVO ======== */

@media (max-width: 600px) {

    body {
        align-items: flex-start;
    }

    .center-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
        text-align: left;
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 30px;
    
    }

    .main-title {
        font-size: 34px;
    }

    .question-title {
    font-size: 34px !important;
    }

    .subtitle {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .basic-form {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}


