/** 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%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* CARD PRINCIPAL */
.fila-animada {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--fila-bg);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fila-animada:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.42);
}

/* Variantes de layout desktop */
.fila-animada--vertical {
  flex-direction: column;
  text-align: center;
}

.fila-animada--reverse {
  flex-direction: row-reverse;
}

/* MEDIA (video o imagen) */
.fila-animada__media {
  width: 45%;
  flex-shrink: 0;
}

.fila-animada--vertical .fila-animada__media {
  width: 100%;
}

/* Contenedor de uno o dos videos */
.fila-animada__videos {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fila-animada__videos--duo {
  /* en desktop se ajusta más abajo */
}

/* Cada video: usamos tamaño natural, no truco 16:9 */
.fila-animada__video {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* video_tag de Shopify */
.fila-animada__video-tag {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* se ve completo en desktop también */
  background: #000;
}

/* Imagen fallback */
.fila-animada__imagen img {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* CONTENIDO */
.fila-animada__contenido {
  width: 55%;
  display: flex;
  align-items: center;
}

.fila-animada--vertical .fila-animada__contenido {
  width: 100%;
}

.fila-animada__contenido-inner {
  background: rgba(15, 23, 42, 0.65);
  padding: 24px 28px;
  border-radius: 20px;
}

/* Tipografía */
.fila-animada__titulo {
  font-weight: 700;
  margin-bottom: 12px;
}

.fila-animada__descripcion {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Botón */
.fila-animada__boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(22, 163, 74, 0.55);
  border: 1px solid rgba(34, 197, 94, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fila-animada__boton:hover {
  transform: translateY(-1px) scale(1.03);
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 16px 36px rgba(21, 128, 61, 0.7);
}

/* Desktop: 2 videos lado a lado */
@media (min-width: 992px) {
  .fila-animada__videos--duo {
    flex-direction: row;
  }

  .fila-animada__video {
    flex: 1;
  }
}

/* ----------------------------- */
/*   🎚 SWITCH DE MÓVIL (CSS)   */
/* ----------------------------- */
@media (max-width: 768px) {
  .filas-contenedor {
    padding-inline: 16px;
  }

  /* Opción A: stacked (video arriba, texto abajo) */
  .fila-animada--mobile-stacked {
    flex-direction: column;
    gap: 18px;
    padding: 26px 18px;
  }

  .fila-animada--mobile-stacked .fila-animada__media,
  .fila-animada--mobile-stacked .fila-animada__contenido {
    width: 100%;
  }

  /* Opción B: side_by_side (video y texto en columnas en móvil) */
  .fila-animada--mobile-row {
    flex-direction: row;
    gap: 16px;
    padding: 26px 18px;
  }

  .fila-animada--mobile-row .fila-animada__media,
  .fila-animada--mobile-row .fila-animada__contenido {
    width: 50%;
  }

  .fila-animada__contenido-inner {
    text-align: center;
  }
}