/* --- NEON TRANSPARENT FOOTER --- */
.neon-footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 1.5rem;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 100;
    margin-top: auto;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0.8;
}

.footer-info-item {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.footer-info-item span {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-left: 5px;
}

.footer-location {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 3px;
    margin-top: 1rem;
    text-transform: uppercase;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin: 0 auto 10px auto;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Efeito de brilho suave ao passar o mouse */
.neon-footer:hover {
    border-top-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .neon-footer {
        padding: 2rem 1rem;
    }
    .footer-info-item {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
}
