﻿/* GOIÁS TÁXI - ESTILOS CUSTOMIZADOS */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Custom Leaflet Marker Fixes */
.leaflet-div-icon {
  background: transparent;
  border: none;
}

.custom-leaflet-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

/* Animação suave para marcadores */
@keyframes bounceSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.animate-bounce-subtle {
  animation: bounceSubtle 2s infinite ease-in-out;
}

/* Efeito Glow no Táxi */
.taxi-glow {
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

/* Estilização dos Popups do Mapa */
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  padding: 4px;
  font-family: inherit;
}

.leaflet-popup-content {
  margin: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #1e293b;
}

/* Barra de Rolagem Moderna */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Modais com Backdrop Blur */
.modal-backdrop {
  backdrop-filter: blur(6px);
  background-color: rgba(15, 23, 42, 0.75);
}