:root {
  --coral: #ff6b4a;
  --coral-dark: #e84d2f;
  --teal: #1aa6a6;
  --teal-dark: #0f8585;
  --amber: #ffb347;
  --violet: #6c4ce0;
  --ink: #1e293b;
  --muted: #64748b;
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.75rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--coral), var(--amber));
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 107, 74, 0.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  background: white;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--teal); color: white; }

.btn-whatsapp {
  background: #25d366;
  color: white;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover { background: #1ebe57; }

.form-input, .dash-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.85rem;
  font-size: 1.05rem;
  background: white;
}
.form-input:focus, .dash-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 166, 166, 0.2);
}

.card-hover {
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.12);
}

.badge-sold {
  background: #94a3b8;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}
.badge-available {
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-gradient {
  background: linear-gradient(135deg, #ff6b4a 0%, #ffb347 35%, #1aa6a6 100%);
}

.dash-card {
  background: white;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 2px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.2s;
  text-align: center;
}
.dash-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 166, 166, 0.15);
}
.dash-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.dash-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.dash-card p { font-size: 0.95rem; color: var(--muted); margin-top: 0.35rem; }

.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  color: white;
}
.dash-btn:hover { opacity: 0.92; }

.prose p { margin-bottom: 1rem; }