.parque-status {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

.parque-status--loading {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
}

.parque-status--open {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}

.parque-status--closed {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.parque-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  background: currentColor;
  opacity: 0.5;
}

.parque-status--open .parque-status-dot {
  background: #10b981;
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.parque-status--closed .parque-status-dot {
  background: #ef4444;
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.parque-status-body {
  flex: 1;
  min-width: 0;
}

.parque-status-body strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.parque-status-body span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.9;
}

.construction-card .parque-status {
  margin-bottom: 16px;
}

.hero .parque-status {
  max-width: 420px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
}

.hero .parque-status--open {
  color: #065f46;
}

.hero .parque-status--closed {
  color: #991b1b;
}
