/* ================= ESTILOS DA PÁGINA DE CONTATO (TEMA DARK/PRETO) ================= */
.contact-page {
    background-color: white;
    padding: 60px 40px;
    border-radius: 0;
}

.contact-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Caixa do Formulário */
.contact-form-box {
    flex: 1.5;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-form-box h2 {
    color: #000000; /* Título Preto */
    margin-bottom: 25px;
    font-size: 24px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.input-group input,
.input-group textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #000000; /* Foco da caixa em Preto */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.btn-submit {
    background-color: #000000; /* Botão Preto */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 10px;
    border: 2px solid #000;
}

.btn-submit:hover {
    background-color: #111111; /* Fundo preto um pouco mais claro */
    color: #00d9ff; /* Letra azul neon no hover! */
    transform: translateY(-2px);
}

.success-msg {
    margin-top: 20px;
    padding: 15px;
    background-color: #dcfce7;
    color: #166534;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #bbf7d0;
}

/* Caixa de Informações e Redes (AGORA PRETA!) */
.contact-info-box {
    flex: 1;
    background-color: #000000; /* Fundo Preto */
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Sombra um pouco mais forte pra destacar */
}

.contact-info-box h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.icon-blue {
    color: #00d9ff; /* Ícones em azul neon pra dar aquele contraste chique */
    font-size: 20px;
}

.binary-divider-small {
    color: rgba(255,255,255,0.3);
    font-family: monospace;
    font-size: 12px;
    text-align: center;
    margin: 30px 0;
    letter-spacing: 2px;
}

/* Botões Sociais Grandes */
.social-title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
}

.social-btn i {
    font-size: 22px;
}

.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1ebe57; transform: translateY(-3px); }

.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.instagram:hover { filter: brightness(1.1); transform: translateY(-3px); }

.facebook { background-color: #1877F2; }
.facebook:hover { background-color: #1461c7; transform: translateY(-3px); }

/* Responsividade Básica (Celular) */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}

/* =========================================================
   CABEÇALHO E RODAPÉ PRETO (Garantia para todas as páginas)
   ========================================================= */
.main-header {
    background-color: #000000 !important; 
    border-bottom: none !important;
}

.main-footer {
    background-color: #000000 !important; 
    border-top: none !important;
}