/** Shopify CDN: Minification failed

Line 150:32 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:latas-floating (INDEX:24) */
.soulstice-float-section {
    width: 105%;
    background: #FFFFFF;
    padding: 40px 20px;
    overflow: hidden;
  }

  .soulstice-float-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    min-height:200px;
  }

  .soulstice-can {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .soulstice-can img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
  }

  /* Lata central - Original */
  .soulstice-can--center {
    width: 25%;
    max-width: 250px;
    z-index: 0;
    margin: 120px;
    animation: soulstice-float-center 4.5s ease-in-out infinite;
  }

  /* Lata izquierda - Lima */
  .soulstice-can--left {
    width: 25%;
    max-width: 250px;
    z-index: 1;
    transform: rotate(-4deg);
    animation: soulstice-float-left 5.2s ease-in-out infinite;
    animation-delay: 0.3s;
  }

  /* Lata derecha - Mango */
  .soulstice-can--right {
    width: 27%;
    max-width: 270px;
    z-index: 1;
    transform: rotate(4deg);
    animation: soulstice-float-right 4.8s ease-in-out infinite;
    animation-delay: 0.6s;
  }

  /* Sombra elíptica debajo de cada lata */
  .soulstice-shadow {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 22px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    animation: soulstice-shadow-pulse 4.5s ease-in-out infinite;
  }

  .soulstice-can--left .soulstice-shadow {
    animation-duration: 5.2s;
    animation-delay: 0.3s;
  }

  .soulstice-can--right .soulstice-shadow {
    animation-duration: 4.8s;
    animation-delay: 0.6s;
  }

  /* Animaciones de flotación - cada lata con recorrido y timing ligeramente distintos */
  @keyframes soulstice-float-center {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }

  @keyframes soulstice-float-left {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
  }

  @keyframes soulstice-float-right {
    0%, 100% { transform:translateY(0px); }
    50% { transform: translateY(-15px); }
  }

  @keyframes soulstice-shadow-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(0.85); }
  }

  /* Responsive - mobile */
  @media screen and (max-width: 749px) {
    .soulstice-float-section {
      padding: 50px 16px;
    }

    .soulstice-float-wrapper {
      min-height: 250px;
    }

    .soulstice-can--center {
      width: 25%;
      margin: 20px;
    }

    .soulstice-can--left {
      width: 25%;
    .soulstice-can--right {
      width: 20%;
    }
  }

  /* Respeta preferencia de usuario de reducir movimiento */
  @media (prefers-reduced-motion: reduce) {
    .soulstice-can--center,
    .soulstice-can--left,
    .soulstice-can--right,
    .soulstice-shadow {
      animation: none;
    }
  }
/* END_SECTION:latas-floating */