/**
 * LicitaGov - CSS Unificado
 * Estilos compartilhados para todas as páginas
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --brand-400: #60a5fa;
  --brand-500: #3b82f6;
  --brand-600: #2563eb;
  --indigo-500: #6366f1;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --cyan-500: #0ea5e9;
  --rose-500: #f43f5e;
}

/* ========================================
   Reset and Base
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--slate-950);
  color: var(--slate-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--brand-400);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

/* ========================================
   Background Decorations
   ======================================== */
.bg-decoration {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.bg-blob,
.bg-blob-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-500), var(--indigo-500), var(--cyan-500));
  filter: blur(80px);
  opacity: 0.25;
}

.bg-blob-2 {
  position: absolute;
  bottom: -8rem;
  right: -4rem;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-500), #22d3d1, var(--emerald-500));
  filter: blur(80px);
  opacity: 0.25;
}

/* ========================================
   Container
   ======================================== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   Header
   ======================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--brand-500), var(--indigo-500));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav,
.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  nav,
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

nav a,
.nav-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
.nav-links a:hover {
  color: #fff;
}

/* Navigation dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 12rem;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0.35rem);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--slate-200);
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #fff;
}

/* ========================================
   Buttons
   ======================================== */
.cta-button,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--brand-500), var(--indigo-500));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.btn-primary:hover {
  opacity: 0.95;
  transform: scale(1.02);
  color: #fff;
}

.cta-button-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   Section Base
   ======================================== */
section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  section { padding: 7rem 0; }
}

.section-header {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .section-header h2 { font-size: 2.25rem; }
}

.section-header p {
  margin-top: 1rem;
  color: var(--slate-300);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: 5rem 0 6rem;
}

@media (min-width: 640px) {
  .hero { padding: 7rem 0 8rem; }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3rem; }
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-400), var(--emerald-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle,
.subtitle {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 42rem;
}

/* ========================================
   Cards Base
   ======================================== */
.card,
.feature-card,
.benefit-card,
.why-card,
.service-card,
.step-card,
.pricing-card,
.testimonial-card,
.faq-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.card:hover,
.feature-card:hover {
  transform: translateY(-4px);
}

.card h3,
.feature-card h3,
.benefit-card h3,
.why-card h3,
.service-card h3,
.step-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.card p,
.feature-card p,
.benefit-card p,
.why-card p,
.service-card p,
.step-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

/* Card Icons */
.card .icon,
.feature-card .icon,
.benefit-card .icon,
.why-card .icon,
.service-card .icon,
.step-card .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.icon.blue { background: linear-gradient(135deg, var(--brand-500), var(--indigo-500)); }
.icon.green { background: linear-gradient(135deg, var(--emerald-500), var(--cyan-500)); }
.icon.amber { background: linear-gradient(135deg, var(--amber-500), #f97316); }
.icon.rose { background: linear-gradient(135deg, var(--rose-500), #ec4899); }

/* ========================================
   Grids
   ======================================== */
.benefits-grid,
.services-grid,
.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .benefits-grid,
  .services-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid,
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   Pricing
   ======================================== */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card.popular {
  border: 2px solid var(--brand-500);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(59, 130, 246, 0.15));
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.pricing-card .plan-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 1.875rem;
  font-weight: 800;
}

.pricing-card .price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-400);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  margin-top: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

.pricing-features .check {
  color: var(--emerald-400);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '⌄';
  color: var(--slate-400);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: #facc15;
  margin-bottom: 1rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-card .quote {
  font-size: 0.875rem;
  color: var(--slate-300);
  line-height: 1.6;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author .avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-author .role {
  font-size: 0.75rem;
  color: var(--slate-400);
}

/* ========================================
   CTA Final
   ======================================== */
.cta-final {
  text-align: center;
  padding: 5rem 0 6rem;
}

.cta-final h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .cta-final h3 { font-size: 1.875rem; }
}

.cta-final .subtitle {
  margin-top: 0.75rem;
  color: var(--slate-300);
}

.cta-benefits {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--slate-300);
}

.cta-benefits span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.cta-benefits .check {
  width: 1rem;
  height: 1rem;
  color: var(--emerald-400);
}

/* ========================================
   Footer
   ======================================== */
footer {
  background: var(--slate-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4,
.footer-column h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}


.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--slate-200);
}

.footer-badge svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.footer-section a,
.footer-column a {
  display: block;
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-section a:hover,
.footer-column a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-500);
  font-size: 0.875rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  max-width: 20rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ========================================
   Article/Prose Styles
   ======================================== */
article,
.prose {
  max-width: 48rem;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  color: var(--slate-300);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  color: var(--slate-300);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose strong {
  color: white;
  font-weight: 600;
}

/* Article Cards */
.highlight-box {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--brand-500);
  padding: 1rem 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1rem 0;
}

.highlight-box p {
  margin: 0;
}

/* Article Meta */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  color: var(--slate-400);
  font-size: 0.875rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Article Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.2);
  color: var(--brand-400);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Article List */
.bullet {
  color: var(--emerald-400);
  margin-right: 0.5rem;
}

/* ========================================
   Legal Pages (Termos, Privacidade)
   ======================================== */
.legal-page main {
  max-width: 50rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-page .last-update {
  color: var(--slate-400);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.legal-page p {
  color: var(--slate-300);
  margin-bottom: 1rem;
}

.legal-page ul {
  color: var(--slate-300);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-page li {
  margin-bottom: 0.5rem;
}

/* ========================================
   Articles List Page
   ======================================== */
.articles-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(3, 1fr); }
}

.article-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.5);
}

.article-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-top: 0.75rem;
}

.article-card p {
  font-size: 0.875rem;
  color: var(--slate-400);
  margin-top: 0.5rem;
}

/* ========================================
   Icons
   ======================================== */
.icon { width: 1rem; height: 1rem; }
.icon-lg { width: 2rem; height: 2rem; }
.icon-svg { width: 1.25rem; height: 1.25rem; }

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.relative { position: relative; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .nav-links,
  nav { display: none; }
  .hero { padding: 2rem 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .legal-page h1 { font-size: 1.75rem; }
}

/* ========================================
   Counters
   ======================================== */
.counters {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.75rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .counters { grid-template-columns: repeat(3, 1fr); }
}

.counter-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}

.counter-card .number {
  font-size: 1.5rem;
  font-weight: 800;
}

.counter-card .label {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

/* ========================================
   Feature List
   ======================================== */
.feature-list {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--slate-300);
}

.check-icon {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #fff;
}

/* ========================================
   Dashboard Demo
   ======================================== */
.dashboard-demo {
  position: relative;
}

.dashboard-demo::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border-radius: 1.5rem;
  filter: blur(40px);
  z-index: -1;
}

.dashboard-demo img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Cases Table
   ======================================== */
.cases-table {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.cases-header {
  display: none;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .cases-header { display: grid; grid-template-columns: repeat(3, 1fr); }
}

.cases-header div {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.case-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.case-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
  .case-row { display: grid; grid-template-columns: repeat(3, 1fr); }
}

.case-row > div {
  padding: 1rem 1.5rem;
}

.case-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-300);
}

.case-list .x { color: #f87171; }
.case-list .check {
  color: var(--emerald-400);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
