footer {
    background-color: #fffffe;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

footer img {
    width: 200px;
    margin-bottom: 30px;
}

footer p {
    font-size: 0.95rem;
    margin-top: 3px;
    color: #111;
}

footer a.hrsistemas {
    color: #111;
    text-decoration: none;
    font-weight: bold;
}

footer a.hrsistemas:hover {
    color: #f5811e;
}


/* ======= BOTÕES DE REDES SOCIAIS ======= */
.social-links {
    margin-top: 25px;
    margin-bottom: 30px; /* adiciona espaço abaixo dos botões */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    bottom: 10px;
}

/* Estilo base para todos os botões */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    z-index: 1000;

}

/* Ícones */
.social-btn i {
    font-size: 1.3rem;
}

/* ===== Instagram ===== */
.social-btn.instagram {
    background-color: #f5811e;
    color: #111;
}

.social-btn.instagram:hover {
    background-color: #111;
    color: #f5811e;
    border: 2px solid #f5811e;
    transform: translateY(-3px);
}

/* ===== WhatsApp ===== */
.social-btn.whatsapp {
    background-color: #25D366;
    color: #111;
}

.social-btn.whatsapp:hover {
    background-color: #111;
    color: #25D366;
    border: 2px solid #25D366;
    transform: translateY(-3px);
}

/* ===== E-MAILS ===== */
.email-links {
    display: flex;
    flex-direction: column;  /* coloca um abaixo do outro */
    align-items: center;     /* centraliza horizontalmente */
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    gap: 8px; /* espaço entre os e-mails */
}

.email-link {
    display: flex;
    align-items: center;
    justify-content: center; /* garante alinhamento do ícone + texto */
    gap: 8px;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem;
}

.email-link i {
    color: #f5811e;
    font-size: 1.1rem;
}

.email-link:hover {
    color: #f5811e;
    transform: translateY(-2px);
}


/* Responsivo */
@media (max-width: 900px) {
    .social-links {
        margin-bottom: 80px;
    }
}
