/* --- Página Incendios --- */
.inc-section {
  margin-bottom: 2.5rem;
}

.inc-map {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.inc-map-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 0.5rem;
}

.inc-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.inc-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.inc-legend-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
}

.inc-sources-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.inc-sources-list a {
  color: var(--accent-light);
}

.inc-list {
  margin-top: 0;
}

.inc-heatwave-svg {
  height: auto;
  min-height: 40px;
}

.inc-heatwave-cell {
  cursor: default;
}

.inc-heatwave-cell-empty {
  fill: transparent;
}

.inc-heatwave-cell-normal {
  fill: var(--border);
}

.inc-heatwave-cell-hot {
  fill: #ff3b30;
  cursor: pointer;
}

.inc-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* Popup de Leaflet adaptado al tema */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--surface);
  color: var(--text);
}

.leaflet-popup-content {
  font-family: var(--font);
  font-size: 0.8rem;
}

.leaflet-popup-content a {
  color: var(--accent-light);
}

.inc-popup-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.inc-popup-meta {
  color: var(--text-muted);
  font-size: 0.72rem;
}
