/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:marcas_externas (INDEX:32) */
.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:three-banners-row (INDEX:67) */
.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 */