/* =========================================
   CONTATO (Padrão Unificado)
   ========================================= */

/* Título */
.about-title {
    font-family: 'Inter', sans-serif;
    color: rgba(12, 4, 7, 0.4); /* Padrão do cliente */
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.about-title-black {
    color: #0c0407;
}

/* Formulário */
.contact-us-label {
    font-family: 'Inter', sans-serif;
    color: #0c0407;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    display: block;
}

.contact-us-input, 
.contact-us-dropdown, 
.contact-us-textarea {
    font-family: 'Inter', sans-serif;
    color: #4c4c4c;
    font-size: 16px; /* Tamanho legível */
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 15px;
    width: 100%;
    background-color: #fff;
}

.contact-us-input:focus,
.contact-us-textarea:focus {
    border-color: #0c0407;
    outline: none;
}

/* FAQ (Perguntas Frequentes) */
.faq-title {
    font-family: 'Inter', sans-serif;
    color: #0c0407;
    font-weight: 600;
    font-size: 18px;
}

/* Texto das Respostas (Padrão Ouro) */
.faq-text {
    font-family: 'Inter', sans-serif;
    color: #4c4c4c;
    font-size: 16px;
    line-height: 1.7rem;
    /* text-align: justify; */
    margin-top: 11px;
}

/* Botão Enviar */
.primary-btn.contact-us-btn {
    font-family: 'Inter', sans-serif;
    background-color: #0c0407;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.page-content { padding: 80px 0; }