:root {
  --bg: #f5f0e8;
  --panel: rgba(255, 255, 255, 0.88);
  --ink: #202124;
  --muted: #6b7280;
  --accent: #c26a2d;
  --accent-dark: #8c4618;
  --success: #177245;
  --danger: #9b2226;
}

body {
  background:
    radial-gradient(circle at top left, rgba(194, 106, 45, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(23, 114, 69, 0.16), transparent 26%),
    linear-gradient(135deg, #f6ede3 0%, #f4f5f7 48%, #eef3ef 100%);
  color: var(--ink);
  min-height: 100vh;
}

.dashboard-shell {
  min-height: 100vh;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 240, 0.88));
  border: 1px solid rgba(194, 106, 45, 0.18);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-lockup img {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-lockup--compact img {
  width: 240px;
}

.brand-copy {
  max-width: 32rem;
}

.login-card {
  max-width: 560px;
  margin: 0 auto;
}

.login-brand {
  width: 100%;
  justify-content: center;
}

.dashboard-brand {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

@media (max-width: 767.98px) {
  .hero-card {
    padding: 1.5rem;
  }

  .brand-lockup img,
  .brand-lockup--compact img {
    width: 210px;
  }
}

.card {
  background: var(--panel);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.table thead th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-status {
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-entregado {
  background: rgba(23, 114, 69, 0.14);
  color: var(--success);
}

.badge-no-entregado {
  background: rgba(155, 34, 38, 0.12);
  color: var(--danger);
}

.thumb-link,
.map-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.thumb-link:hover,
.map-link:hover {
  text-decoration: underline;
}
