/* Estilos globales para el body y elementos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Scrollbar personalizado */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0a0a0a;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #FFD900;
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #d9b800;
  }
  
  /* Estilos para contenedores generales */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Estilos para encabezados */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
  }
  
  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #FFD900;
  }
  
  h3 {
    font-size: 1.8rem;
    color: #FFD900;
  }
  
  /* Estilos para párrafos */
  p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  
  /* Estilos para enlaces */
  a {
    color: #FFD900;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: #fff;
    text-decoration: none;
  }
  
  /* Estilos para secciones */
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    display: inline-block;
  }
  
  .section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Efectos de transición comunes */
  .transition-all {
    transition: all 0.3s ease;
  }
  
  /* Utilidades de espaciado */
  .mb-1 { margin-bottom: 0.5rem; }
  .mb-2 { margin-bottom: 1rem; }
  .mb-3 { margin-bottom: 1.5rem; }
  .mb-4 { margin-bottom: 2rem; }
  .mb-5 { margin-bottom: 3rem; }
  
  .mt-1 { margin-top: 0.5rem; }
  .mt-2 { margin-top: 1rem; }
  .mt-3 { margin-top: 1.5rem; }
  .mt-4 { margin-top: 2rem; }
  .mt-5 { margin-top: 3rem; }
  
  /* Estilos para elementos de formulario */
  input, textarea, select, button {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    padding: 10px 15px;
    border: 1px solid #333;
    background-color: #111;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FFD900;
    box-shadow: 0 0 5px rgba(255, 217, 0, 0.5);
  }
  
  button, .button {
    display: inline-block;
    background-color: #FFD900;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  button:hover, .button:hover {
    background-color: #d9b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 217, 0, 0.3);
  }
  
  /* Media queries */
  @media (max-width: 992px) {
    h2 {
      font-size: 2.2rem;
    }
    
    h3 {
      font-size: 1.6rem;
    }
    
    .section {
      padding: 60px 0;
    }
  }
  
  @media (max-width: 768px) {
    body {
      font-size: 0.95rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    h3 {
      font-size: 1.4rem;
    }
    
    .section {
      padding: 50px 0;
    }
    
    .container {
      padding: 0 15px;
    }
  }
  
  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 1s ease forwards;
  }
  
  /* Variantes de retraso para las animaciones */
  .delay-100 { animation-delay: 0.1s; }
  .delay-200 { animation-delay: 0.2s; }
  .delay-300 { animation-delay: 0.3s; }
  .delay-400 { animation-delay: 0.4s; }
  .delay-500 { animation-delay: 0.5s; }