/* CaraCore Seed Portal (delivery/seed/) — Estilos compartilhados.
   Foco: tecnologias locais (Electron, SQLite, Java, Windows). */

:root{
  --brand-a: #0b1f3a;
  --brand-b: #111827;
  --brand-c: #0f766e;
  --green: #059669;
  --green2: #10b981;
  --grad-a: #667eea;
  --grad-b: #764ba2;
}

body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.brand-bg { background: linear-gradient(135deg, var(--brand-a) 0%, var(--brand-b) 55%, var(--brand-c) 100%); }
.brand-chip { background: linear-gradient(135deg, rgba(16,185,129,0.18) 0%, rgba(16,185,129,0.08) 100%); }
.green-bg { background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%); }
.green-accent { color: var(--green); }

.gradient-bg { background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%); }
.gradient-text {
  background: linear-gradient(135deg, var(--grad-a) 0%, var(--grad-b) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.smooth-scroll { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.card { background: white; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }

.focus-ring:focus { outline: none; box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35); }
.window-shadow { box-shadow: 0 30px 80px rgba(2, 6, 23, 0.55), 0 10px 25px rgba(2, 6, 23, 0.35); }

.selo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--green);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
}

.info-box {
  background: #e0f2fe;
  border-left: 4px solid #0284c7;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.warning-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.success-box {
  background: #d1fae5;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.sol-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}
.sol-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.section-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.highlight-box {
  background: linear-gradient(135deg, #05966915 0%, #10b98115 100%);
  border-left: 4px solid var(--green);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
table th, table td { border: 1px solid #e5e7eb; padding: 0.75rem; text-align: left; }
table th { background-color: #f9fafb; font-weight: 600; }
