#map {
  width: 100%;
  height: 400px;
}

/* Container principal */
#info-window-content {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 12, 120, 0.15);
  max-width: 280px;
  transition: all 0.3s ease;
  animation: fadeIn 0.3s ease-in-out;
}

/* Animação de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cabeçalho */
.info-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.info-window-header i {
  color: #000c78;
  font-size: 22px;
  background: rgba(0, 12, 120, 0.08);
  padding: 8px;
  border-radius: 12px;
}

.info-window-header h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}

/* Corpo */
.info-window-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Item */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: background 0.2s;
}

.info-item:hover {
  background: #f1f4ff;
}

.info-item i {
  color: #ff9800;
  font-size: 18px;
  flex-shrink: 0;
}

.info-item p {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

.info-item span {
  font-weight: 600;
  color: #000c78;
}

/* Responsivo */
@media (max-width: 400px) {
  #info-window-content {
    max-width: 220px;
    padding: 14px;
  }

  .info-window-header h4 {
    font-size: 14px;
  }

  .info-item p {
    font-size: 13px;
  }
}
