/* =========================================
   CONTATO.CSS - Estilos da Central da Matilha
   ========================================= */

.contato-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.contato-container h2 {
    font-size: 2.5rem;
    color: var(--amarelo, #f39c12);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contato-container p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
}

.grid-contato {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card-contato {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-contato:hover {
    border-color: var(--amarelo, #f39c12);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}

.card-contato i {
    font-size: 2.5rem;
    color: var(--amarelo, #f39c12);
    margin-bottom: 15px;
}

.card-contato h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.card-contato span {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.4;
}

.btn-whatsapp-direto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-whatsapp-direto:hover {
    background-color: #1ebe5d;
}

/* =========================================
   FUNDO DA PÁGINA E FOOTER FIXO
   ========================================= */

body.body-painel {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                      url('../img/fundo-halter.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh; /* Garante a altura total */
    
    /* 🔥 A MÁGICA PARA O FOOTER DESCER: Flexbox 🔥 */
    display: flex;
    flex-direction: column;
}

.footer-fixo {
    background-color: #000;
    text-align: center;
    padding: 20px;
    color: var(--cinza-claro, #cccccc); /* Cor do texto com segurança */
    border-top: 1px solid #333;
    
    /* 🔥 EMPURRA O FOOTER LÁ PRO FINAL DA TELA 🔥 */
    margin-top: auto; 
    width: 100%;
}