/* FotoCidade DF - Estilos Globais e Personalizados */

:root {
  --color-brand-blue: #0D5BA8;
  --color-brand-teal: #00A7B5;
  --color-brand-orange: #FF8A00;
  --color-brand-yellow: #FFC107;
  --color-brand-dark: #333333;
  --color-brand-gray: #E6E6E6;
  --color-brand-light: #F8FAFC;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--color-brand-light);
  color: var(--color-brand-dark);
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
}

/* Glassmorphism & Custom Shadow Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Leaflet Custom Marker & Popup Fixes */
.leaflet-container {
  width: 100%;
  height: 100%;
  z-index: 10;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  border-radius: 1rem;
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(13, 91, 168, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  padding: 4px;
}

.leaflet-popup-content {
  margin: 12px 14px;
  line-height: 1.5;
}

.leaflet-popup-tip {
  background: white;
}

/* Custom Pulsing Map Marker */
.custom-pin-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-pin {
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Smooth transition utility */
.transition-smooth {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbars */
::-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;
}

/* Modal animation */
.modal-overlay {
  transition: opacity 0.25s ease-in-out;
}
.modal-content {
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
