.footer {
    background: #F9FAFB;
    padding: 96px 0px;
}

.titulo-footer {
    font-family: var(--fonte);
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--cor-titulo-secoes);
    margin-bottom: 20px;
}

.texto-footer {
    font-family: var(--fonte);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #98A2B3;
    margin-bottom: 40px;
}

.form-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.form-footer input {
    width: 25%;
    border-radius: 10px;
    border: 1px solid #D0D5DD;
    padding: 16px;
    box-sizing: border-box;
    height: 38px;
}

.form-footer input::placeholder {
    color: var(--cinza);
    font-size: 14px;
}

.direito-footer {
    font-family: var(--fonte);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #98A2B3;
    margin-top: 32px;
}

@media (max-width: 600px) {
    .form-footer input {
        width: 50%;
    }
}