   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    h2 {
      font-size: 50px;
      text-align: center;
      margin-bottom: 20px;
      color: #4b2065;
    }
    .galeria {
     display: flex;
      flex-wrap: wrap;
      gap:  20px;
      justify-content: center;
      margin-bottom: 40px;
    }
    .imagen-item {
      text-align: center;
      border: 1px solid #ddd;
      padding: 15px;
      border-radius: 10px;
      background-color: #fff4df;
      width: calc(25% - 10px); /* Dos imágenes por fila */
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .imagen-item img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid #8a2be2;
      margin-bottom: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .imagen-item img:hover {
      transform: scale(1.1);
    }
    .imagen-item button {
      padding: 8px 16px;
      background-color: #4b2065;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.9rem;
      transition: background-color 0.3s ease;
      margin-top: 10px;
    }
    .imagen-item button:hover {
      background-color: #7b4c8f;
    }
    .boton-documento {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }
    .boton-documento button {
      padding: 12px 24px;
      font-size: 1rem;
      background-color: #4b2065;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .boton-documento button:hover {
      background-color: #7b4c8f;
    }
  .caja {
      display: flex;
      flex-wrap: wrap;
      gap:  20px;
      justify-content: center;
      margin-bottom: 40px;
      background-color: #ffffff;
      text-align: center;
      padding: 20px;
      border: 2px solid #ffffff;
      justify-items: center;
      justify-self: center;
      width: 40%;
      border-radius: 10px;
        }
.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  -webkit-transform: translateY(-0.25em);
          transform: translateY(-0.25em);
}
.raise {
  --color: #7f4ca5;
  --hover: #7f4ca5;
}
.raise{
  padding: 12px 24px;
      font-size: 1rem;
      background-color: #4b2065;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
}
@media (max-width: 800px) {
  .imagen-item {
    width: 90%;
  }
  .galeria {
    gap: 10px;
  }
}
h3{
  font-size: 25px;
}