body { 
    font-family: 'Inter', sans-serif; 
    background-color: #f3f4f6; 
}

.glass-card { 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
    padding: 24px; 
}

#mapa { 
    z-index: 1; 
}

/* Navegação */
.nav-link {
    opacity: 0.8;
    transition: opacity 0.3s ease, font-weight 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    font-weight: bold;
    border-bottom: 2px solid white;
    padding-bottom: 2px;
}