/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Base */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #222;
    padding: 30px 20px;
    line-height: 1.7;
  }
  
  /* Artículo */
  .articulo {
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Títulos */
  h1 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
  }
  
  h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    color: #f4c542;
  }
  
  /* Párrafos */
  p {
    margin-top: 15px;
    color: #444;
  }
  
  /* Negrita destacada */
  .highlight {
    font-weight: bold;
    color: #007acc;
  }
  
  /* Botones */
  .botones {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    background-color: #FFD700;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #f1c40f;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 1.6rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }
  /* Imagen destacada (tipo slider inicial) */
.imagen-slider {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .imagen-slider img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  