/* Contenedor principal del tutorial */
/* .tutorial {
    max-width: 800px;
    margin: 0 auto;
    padding: 5px;
  } */
 
  /* Estilo para los títulos */
  h2 {
    font-family: 'Arial', sans-serif;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.8rem; /* Ajuste del tamaño del título principal */
    margin-top: 30px;
  }

  h3 {
    font-size: 1.6rem; /* Ajuste para subtítulos */
    margin-top: 20px;
  }

  /* Imágenes ajustadas */
  .tutorial-image {
    max-width: 100%;     /* Asegura que la imagen no exceda el contenedor */
    height: auto;        /* Mantiene la proporción de la imagen */
    display: block;      /* Centra la imagen si es un elemento inline-block */
    margin: 20px auto;   /* Espacio alrededor y centrado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
    border-radius: 8px; 
  }

  /* Agrupación de imágenes */
  .tutorial-image-group .tutorial-image-group-small{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }

  /* Agrupación de imágenes */
  .tutorial-image-group-small{
    display: block;
    text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
  }

  .tutorial-image-group img {
    max-width: 48%; /* Distribuir en columnas */
  }

  .tutorial-image-group-small img {
    max-width: 300px;
    
    height: auto;/* Distribuir en columnas */
  }




  /* Agrupación de imágenes */
  .tutorial-image-group-3 {
    display: block;
    text-align: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
  }

  .tutorial-image-group-3 img {
    max-width: 240px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
  }




  /* Estilo para los textos */
  p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }


  /* Botones */
  .btn {
    background-color: #14b8a6;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }

  .btn:hover {
    background-color: #0d9488;
  }

  .img-small {
    max-width: 300px;
    height: auto;
  }

  .img-medium {
    max-width: 500px;
    height: auto;
  }

  .img-large {
    max-width: 800px;
    height: auto;
  }