/** Shopify CDN: Minification failed

Line 43:15 Expected identifier but found whitespace
Line 43:17 Unexpected "{"
Line 43:26 Expected ":"
Line 219:6 Expected identifier but found whitespace
Line 219:8 Unexpected "{"
Line 219:17 Expected ":"
Line 219:35 Expected ":"
Line 236:15 Expected identifier but found whitespace
Line 236:17 Unexpected "{"
Line 236:26 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:marcas_externas (INDEX:33) */
.small-banners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* ← Más pequeños */
  gap: 20px; /* ← Espacio fijo más grande (puedes cambiar a 18px o 22px) */
  max-width: 100%;
}

.small-banner {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
}

.small-banner__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.small-banner__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: {{ section.settings.aspect_ratio }};
  overflow: hidden;
  background-color: #f5f5f5;
}

.small-banner__image,
.small-banner__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.small-banner:hover .small-banner__image {
  transform: scale(1.06);
}

.small-banner__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.small-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  color: #fff;
}

.small-banner__heading {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.small-banner__subheading {
  font-size: 0.75rem;
  margin: 0 0 8px;
  opacity: 0.95;
}

.small-banner__button {
  display: inline-block;
  padding: 5px 14px;
  border: 1.5px solid #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
}

/* ==================== RESPONSIVE (MÓVIL SIN CAMBIOS) ==================== */
@media (max-width: 992px) {
  .small-banners-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .small-banners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .small-banner {
    max-width: 100%;
  }

  .small-banner__heading {
    font-size: 0.8rem;
  }

  .small-banner__subheading {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .small-banner__button {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .small-banners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* END_SECTION:marcas_externas */

/* START_SECTION:propuesta-categorias (INDEX:46) */
.propuesta-cats { padding: 32px 24px 40px; max-width: 1440px; margin: 0 auto; }
.propuesta-cats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 20px; }
.propuesta-cats__item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; }
.propuesta-cats__circle { display: block; width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #eee; }
.propuesta-cats__circle img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.propuesta-cats__item:hover .propuesta-cats__circle img { transform: scale(1.06); }
.propuesta-cats__label { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #111; }
@media (max-width: 749px) { .propuesta-cats__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
/* END_SECTION:propuesta-categorias */

/* START_SECTION:propuesta-mosaic (INDEX:47) */
.propuesta-mosaic { padding: 0 24px 48px; max-width: 1440px; margin: 0 auto; }

/* Desktop / tablet: collage con cortes diagonales */
.propuesta-mosaic__box { position: relative; width: 100%; height: 560px; overflow: hidden; background: #111; }
.propuesta-mosaic__item { position: absolute; inset: 0; display: block; text-decoration: none; }
.propuesta-mosaic__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.propuesta-mosaic__item--1 { clip-path: polygon(0 0, 60% 0, 38% 100%, 0 100%); }
.propuesta-mosaic__item--2 { clip-path: polygon(60% 0, 100% 0, 100% 56%, 48% 56%); }
.propuesta-mosaic__item--3 { clip-path: polygon(48% 56%, 100% 56%, 100% 100%, 38% 100%); }
.propuesta-mosaic__title { position: absolute; color: #fff; font-size: 26px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.propuesta-mosaic__item--1 .propuesta-mosaic__title { left: 6%; bottom: 8%; }
.propuesta-mosaic__item--2 .propuesta-mosaic__title { right: 6%; top: 10%; font-size: 22px; }
.propuesta-mosaic__item--3 .propuesta-mosaic__title { left: 55%; bottom: 8%; font-size: 22px; }

/* Movil: tarjetas apiladas simples, sin cortes diagonales */
@media (max-width: 749px) {
  .propuesta-mosaic { padding: 0 16px 32px; }
  .propuesta-mosaic__box {
    position: static;
    height: auto;
    overflow: visible;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .propuesta-mosaic__item {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    clip-path: none;
    overflow: hidden;
    border-radius: 8px;
  }
  .propuesta-mosaic__item .propuesta-mosaic__title,
  .propuesta-mosaic__item--1 .propuesta-mosaic__title,
  .propuesta-mosaic__item--2 .propuesta-mosaic__title,
  .propuesta-mosaic__item--3 .propuesta-mosaic__title {
    left: 5%;
    right: auto;
    top: auto;
    bottom: 6%;
    font-size: 20px;
  }
}
/* END_SECTION:propuesta-mosaic */

/* START_SECTION:propuesta-trust (INDEX:48) */
.propuesta-trust { background: #111111; overflow: hidden; padding: 10px 0; }
.propuesta-trust__track { display: flex; width: max-content; animation: propuesta-trust-scroll 22s linear infinite; }
.propuesta-trust__group { display: flex; align-items: center; flex-shrink: 0; padding-right: 40px; }
.propuesta-trust__item { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; padding: 0 16px; }
.propuesta-trust__dot { color: #666; font-size: 6px; }
@keyframes propuesta-trust-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* END_SECTION:propuesta-trust */

/* START_SECTION:three-banners-row (INDEX:78) */
.three-banners-row__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: {{ section.settings.gap }}px;
  max-width: 100%;
}

.three-banners-row__item {
  position: relative;
  overflow: hidden;
}

.three-banners-row__link {
  display: block;
  text-decoration: none;
}

.three-banners-row__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: {{ section.settings.aspect_ratio }};
  overflow: hidden;
}

.three-banners-row__image,
.three-banners-row__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Ocultar imagen móvil en escritorio */
.mobile-image {
  display: none;
}

/* Mostrar imagen móvil en pantallas pequeñas */
@media (max-width: 768px) {
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
  }
}

.three-banners-row__item:hover .three-banners-row__image {
  transform: scale(1.04);
}

.three-banners-row__overlay {
  position: absolute;
  inset: 0;
  background: #000;
}

.three-banners-row__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #fff;
}

.three-banners-row__heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.three-banners-row__subheading {
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.three-banners-row__button {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 175px;
  align-self: flex-start;
  margin-left: 15px;
  transition: background-color 0.3s ease;
}

.three-banners-row__button:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

/* ==================== RESPONSIVE (MÓVIL) ==================== */
@media (max-width: 768px) {
  .three-banners-row__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .three-banners-row__image-wrapper {
    aspect-ratio: 16/9;
    max-height: 220px;
  }

  .three-banners-row__text {
    padding: 12px;
  }

  .three-banners-row__heading {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .three-banners-row__subheading {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .three-banners-row__button {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-top: auto;
    transition: background-color 0.3s ease;
  }

  .three-banners-row__button:hover {
    background-color: rgba(255, 255, 255, 0.18);
  }
}
/* END_SECTION:three-banners-row */