/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Fuente base */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    padding: 20px;
  }
  
  /* Header */
  .header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .header h1 {
    color: #FFD700; /* Dorado */
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .header .subtitulo {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  /* Contenido principal */
  .contenido {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Secciones */
  section {
    margin-bottom: 50px;
  }
  
  /* Intro con imagen */
  .intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .intro img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }
  
  .intro div {
    flex: 1;
  }
  
  /* Títulos */
  h2 {
    color: #f4c542;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 20px 0 10px;
  }
  
  /* Texto */
  p {
    color: #ddd;
    margin-bottom: 10px;
  }
  
 /* Imágenes dentro de secciones */
article img {
    width: 100%;
    max-width: 300px; /* Reducido de 600px a 300px */
    display: block;
    margin: 15px auto 0; /* Centrado con más separación arriba */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  
  
  /* Lista de ventajas */
  .ventajas ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .ventajas li {
    margin-bottom: 10px;
    color: #eee;
  }
  
  /* Botones finales */
  .botones-final {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
  
  .btn {
    background-color: #FFD700;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #f1c40f;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .intro {
      flex-direction: column;
      text-align: center;
    }
  
    .intro img {
      max-width: 100%;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }
  