/* styles/misprocesos.css */

/* Base colors */
:root {
    --color-primary: #1e3a8a;
    --color-secondary: #3b82f6;
    --color-accent: #60a5fa;
    --color-bg: #f9fafb;
    --color-text: #1f2937;
    --color-muted: #6b7280;
    --color-white: #ffffff;
  }
  
  /* General resets */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  /* Typography */
  .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
  }
  
  .subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
  }
  
  /* Layout */
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .card {
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .list {
    list-style: disc inside;
    margin-top: 0.5rem;
  }
  
  /* Buttons */
 .button {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 20px;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s ease;
}

.button:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
}
  
  /* Footer */
  .footer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-muted);
    padding: 2rem 1rem;
  }
  
  /* Header */
  .header {
    background-color: var(--color-white);
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .text-center {
    text-align: center;
  }
  
  .bg-body {
    background-color: var(--color-bg);
  }
  
  .text-base {
    color: var(--color-text);
  }
  