/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 51:0 Unexpected "<"
Line 144:0 Unexpected "<"
Line 219:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-gallery (INDEX:10) */
<style>
  .custom-gallery-wrapper {
    padding: 40px 20px; /* espacio alrededor de la galería */
  }

  .custom-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .custom-gallery img {
    width: calc(33.333% - 10.67px);
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }

  .custom-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  @media screen and (max-width: 768px) {
    .custom-gallery img {
      width: calc(50% - 8px);
    }
  }

  @media screen and (max-width: 480px) {
    .custom-gallery img {
      width: calc(50% - 8px);
    }
  }
</style>
/* END_SECTION:custom-gallery */

/* START_SECTION:personajes-cards (INDEX:41) */
<style>
  .custom-gallery-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  @media screen and (max-width: 768px) {
    .custom-gallery-wrapper {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  .custom-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }

  .custom-gallery-card {
    width: 400px; /* Ancho fijo */
    aspect-ratio: 3 / 4; /* Proporción 3:4 */
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
    display: block;
    cursor: pointer;
    flex-shrink: 0;
  }

  .custom-gallery-card .image-default,
  .custom-gallery-card .image-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.4s ease;
  }

  .custom-gallery-card .image-hover {
    opacity: 0;
  }

  .custom-gallery-card:hover .image-hover {
    opacity: 1;
  }

  .custom-gallery-card:hover .image-default {
    opacity: 0;
  }

  .overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    text-align: left;
    z-index: 2;
  }

  .overlay-content h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .overlay-content p {
    margin: 2px 0 0;
    line-height: 1.2;
    font-size: 0.95rem;
    opacity: 0.85;
  }

  @media screen and (max-width: 768px) {
    .custom-gallery-card {
      width: 100%;
      max-width: 100%;
    }
  }
</style>
/* END_SECTION:personajes-cards */

/* START_SECTION:personas-card (INDEX:42) */
<style>
  .custom-gallery-wrapper {
    padding: 40px 20px;
  }

  .custom-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .custom-card {
    position: relative;
    width: calc(33.333% - 10.67px);
    border-radius: 8px;
    overflow: hidden;
  }

  .custom-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }

  .custom-card:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
  }

  .person-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
  }

  .person-role {
    font-size: 1rem;
    margin: 4px 0 0;
  }

  @media screen and (max-width: 768px) {
    .custom-card {
      width: calc(50% - 8px);
    }
  }

  @media screen and (max-width: 480px) {
    .custom-card {
      width: calc(50% - 8px);
    }
  }
</style>
/* END_SECTION:personas-card */