
    body {
      font-family: "Lato", sans-serif;
      font-size: 1.1rem;
      font-weight: 400;
      font-style: normal;
      background-color: #fff;
      color: #000000;
      line-height: 1.6;
      padding-top: 2rem;
    }

    .main-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      margin-bottom: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.479);
    }

    .section-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 1.5rem;
    }

    .more-images img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 1rem;
      transition: transform 0.3s;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.479);
    }

    .more-images img:hover {
      transform: scale(1.03);
    }

    .back-link {
      margin-top: 3rem;
      display: inline-block;
      text-decoration: none;
      color: #000;
      border-bottom: 1px solid #aaa;
    }

  .back-icon {
  display: inline-flex;
  align-items: center;
  margin: 3rem 0 0 1rem; /* arriba y a la izquierda */
  text-decoration: none;
  transition: transform 0.3s ease;
}

.arrow-icon {
  width: 48px;
  height: 48px;
  stroke: #000;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.back-icon:hover .arrow-icon {
  stroke: #007BFF; /* o el color que prefieras */
  transform: translateX(-4px);
}
