/* CSS Document */
/* ==========================================================================
   NEON FOOTER — Estilos avançados para o rodapé do site
   ========================================================================== */

/* ==========================================================================
   FOOTER PRINCIPAL
   ========================================================================== */

.neon-footer {
    background-color: #14181b;
    color: #ccc;
    padding: 50px 0;
    border-top: 2px solid #008285;
}

.neon-footer .wrap {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   COLUNAS DO FOOTER
   ========================================================================== */

.neon-footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.neon-footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 2px solid #008285;
    padding-bottom: 6px;
}

/* ==========================================================================
   LINKS DO FOOTER
   ========================================================================== */

.neon-footer a {
    color: #00e0e0;
    text-decoration: none;
    transition: color .2s ease;
}

.neon-footer a:hover {
    color: #00ffff;
}

/* ==========================================================================
   LISTAS DO FOOTER
   ========================================================================== */

.neon-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.neon-footer ul li {
    padding: 6px 0;
    border-bottom: 1px solid #1f2429;
}

.neon-footer ul li:last-child {
    border-bottom: 0;
}

/* ==========================================================================
   FOOTER SOCIAL ICONS
   ========================================================================== */

.neon-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.neon-footer-social a {
    width: 38px;
    height: 38px;
    background-color: #1c2228;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00e0e0;
    font-size: 18px;
    transition: background .2s ease, color .2s ease;
}

.neon-footer-social a:hover {
    background-color: #008285;
    color: #fff;
}

/* ==========================================================================
   COPYRIGHT
   ========================================================================== */

.neon-footer-bottom {
    text-align: center;
    padding: 20px 0 10px;
    margin-top: 30px;
    border-top: 1px solid #1f2429;
    color: #aaa;
    font-size: 14px;
}

.neon-footer-bottom a {
    color: #00e0e0;
}

.neon-footer-bottom a:hover {
    color: #00ffff;
}

/* ==========================================================================
   FOOTER COM SOMBRA (OPCIONAL)
   ========================================================================== */

.neon-footer-shadow {
    box-shadow: 0 -4px 12px rgba(0,0,0,0.35);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {
    .neon-footer {
        padding: 40px 0;
    }

    .neon-footer-title {
        font-size: 16px;
    }

    .neon-footer-social a {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}


