/* --- CONFIGURAÇÕES GERAIS --- */
body { font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
.no-select { user-select: none; -webkit-user-select: none; }

/* --- NAVBAR & TEXTOS --- */
.glass-light { 
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
}

.gradient-green { 
    background: linear-gradient(90deg, #059669, #10b981); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* --- CARDS DE SERVIÇO --- */
.group { transition: all 0.3s ease; }

.group:hover {
    transform: translateY(-10px);
    background-color: #ffffff !important;
    border-color: #10b981 !important; /* Borda acende no hover */
}

/* Efeito de Brilho no Ícone */
.icon-glow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.group:hover .icon-glow {
    color: #10b981 !important;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.8));
}

/* --- MINIMAP LATERAL --- */
nav.fixed.right-6 {
    min-width: 20px;
    z-index: 100;
}

.minimap-dot {
    display: block !important;
    width: 12px;
    height: 12px;
    border: 2px solid #10b981;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

/* Tooltip ao passar o mouse no ponto */
.minimap-dot::after {
    content: attr(title);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f172a;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.minimap-dot:hover::after {
    opacity: 1;
}

/* Estado Ativo (Pílula) - Acionado pelo JS */
.minimap-dot.active {
    background-color: #10b981 !important;
    height: 32px !important; /* Estica o ponto */
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* --- FOOTER & MAPA --- */
footer iframe {
    filter: grayscale(1) opacity(0.7);
    transition: all 0.7s ease;
}

footer iframe:hover {
    filter: grayscale(0) opacity(1);
}