/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 30:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.abandoned-cart-section {
  background-color: #f9f9f9;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #ddd;
}
.abandoned-cart-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.abandoned-cart-products {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.abandoned-cart-product {
  width: 200px;
  text-align: center;
}
</style>
.patrocinadores {
  display: flex;
  overflow: hidden;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  height: var(--section-height);
  width: 100%;
  max-width: 100vw;
  padding: 0;
  box-sizing: border-box;
  background-color: #f8f8f8;
}

.patrocinadores-wrapper {
  display: flex;
  flex-wrap: nowrap;
  animation: slide var(--carousel-speed) linear infinite;
  gap: var(--image-gap);
  align-items: center;
}

.patrocinador-logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}

.patrocinador-logo:hover {
  transform: scale(1.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(-400%);
  }
}

@media (max-width: 768px) {
  .patrocinadores-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .patrocinador-logo {
    max-width: 150px;
  }
}
.filas-contenedor {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 20px;
}

.fila-animada {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 50px 40px;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  background-size: cover;
  background-position: center;
}

.fila-animada:hover {
  transform: scale(1.02) rotate3d(1,1,0,2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.fila-animada__imagen {
  width: 45%;
  transition: transform var(--anim-speed) ease-in-out;
}
.fila-animada__imagen img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}
.fila-animada__imagen img:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.08);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

.fila-animada__contenido {
  width: 50%;
  padding: 30px;
  animation: fadeInUp var(--anim-speed) ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fila-animada__titulo {
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  letter-spacing: 0.6px;
}

.fila-animada__descripcion {
  margin-bottom: 24px;
  line-height: 1.8;
  font-weight: 400;
  word-break: break-word;
}

.fila-animada__descripcion p {
  margin-bottom: 14px;
}

.fila-animada__boton {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.fila-animada__boton:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6);
}

.fila-animada__boton svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.fila-animada__boton:hover svg {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ✅ Adaptación a móviles */
@media (max-width: 768px) {
  .fila-animada {
    flex-direction: column !important;
    padding: 30px 20px;
    text-align: center;
  }

  .fila-animada__imagen,
  .fila-animada__contenido {
    width: 100%;
  }

  .fila-animada__titulo {
    font-size: calc(var(--titulo-size, 24px) * 0.9);
  }

  .fila-animada__descripcion {
    font-size: calc(var(--descripcion-size, 16px) * 0.9);
  }

  .fila-animada__boton {
    justify-content: center;
    margin: 10px auto 0;
  }

  .fila-animada__imagen img {
    transform: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
}