/* ===========================
   RODAPÉ PRINCIPAL - Baseado na imagem fornecida
   =========================== */

/* Container principal do rodapé */
.main-footer {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95), rgba(20, 15, 35, 0.95));
    color: #ffffff;
    padding: 60px 0 0;
    margin: 0;
    border-top: 2px solid #d4af37;
}

/* Container interno do rodapé */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid principal do conteúdo do rodapé */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Seções individuais do rodapé */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Títulos das seções do rodapé */
.footer-title {
    color: #d4af37;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Descrição da seção Eudemons Online */
.footer-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Lista de links do rodapé */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Container dos ícones das redes sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

/* Ícones individuais das redes sociais */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #d4af37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Cores específicas para cada rede social no hover */
.social-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.discord:hover {
    background: #5865f2;
    color: #ffffff;
}

/* Linha separadora entre o conteúdo e o copyright */
.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 20px 0;
}

/* Container do texto de direitos autorais */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: #888888;
    font-size: 14px;
    margin: 0;
}

/* ===========================
   RESPONSIVIDADE DO RODAPÉ
   =========================== */

/* Tablets */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:first-child {
        grid-column: 1;
    }
    
    .social-links {
        justify-content: center;
    }
}

