/* ============================================
   FOOTER - TEMA DARK (CORRIGIDO)
   TechCraftBrasil - Minecraft Server Store
   ============================================ */

.fag-footer {
    background: #0a0c12;
    border-top: 1px solid #1f2329;
    margin-top: 4rem;
}

.footer-shell {
    padding: 3rem 2rem;
}

/* Site Kicker no topo do footer */
.footer-kicker {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #1f2329;
}

.footer-kicker .site-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #66bb6a;
    background: rgba(46, 125, 50, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Grid de colunas com espaçamento */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e8eaed;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #bdc1c6;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #66bb6a;
}

.footer-meta {
    color: #9aa0a6;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social Links - Rodapé */
.footer-social {
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #1f2329;
    text-align: center;
}

.footer-social .social-label {
    font-size: 0.75rem;
    color: #9aa0a6;
    margin-bottom: 1rem;
    display: block;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1d24;
    border-radius: 40px;
    color: #9aa0a6;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background: #2e7d32;
    color: white;
    transform: translateY(-2px);
}

/* Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #1f2329;
    font-size: 0.75rem;
    color: #9aa0a6;
}

/* Media Queries - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-shell {
        padding: 2rem 1.5rem;
    }
}

/* Media Queries - Mobile */
@media (max-width: 767px) {
    .footer-shell {
        padding: 2rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-social {
        padding-top: 1.5rem;
    }
}