/** Shopify CDN: Minification failed

Line 248:0 Unexpected "}"

**/
/* ===================================
   Text with Image Columns Section
   =================================== */

.text-image-columns {
  padding: 80px 40px;
  background-color: #ffffff;
}

.page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Container - Two Columns */
.text-image-columns__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Content Column (Left) */
.text-image-columns__content {
  padding-right: 20px;
}

/* Title */
.text-image-columns__title {
  font-size: 32px;
  font-weight: 700;
  color: #00a8e8;
  line-height: 1.2;
  margin: 0 0 25px 0;
  text-transform: none;
  letter-spacing: -0.5px;
}

/* Description */
.text-image-columns__description {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin: 0 0 25px 0;
}

.text-image-columns__description p {
  margin: 0 0 15px 0;
}

.text-image-columns__description p:last-child {
  margin-bottom: 0;
}

.text-image-columns__description strong {
  font-weight: 700;
  color: #333;
}

/* Subtitle (UPDATED: bigger + blue) */
.text-image-columns__subtitle {
  font-size: 18px;     /* más grande */
  font-weight: 700;
  color: #00a8e8;         /* azul */
  margin: 0 0 15px 0;
}

/* List */
.text-image-columns__list {
  margin: 0 0 25px 0;
  padding-left: 0;
  list-style: none;
}

.text-image-columns__list li {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.text-image-columns__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
  font-weight: 700;
  font-size: 14px;
}

/* Footer Text */
.text-image-columns__footer {
  font-size: 16pxrem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Footer richtext formatting (NEW) */
.text-image-columns__footer p {
  margin: 0 0 15px 0;
}

.text-image-columns__footer p:last-child {
  margin-bottom: 0;
}

.text-image-columns__footer strong {
  font-weight: 700;
  color: #333;
}

.text-image-columns__footer a {
  color: #00a8e8;
  text-decoration: underline;
}

/* Image Column (Right) */
.text-image-columns__image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.text-image-columns__image {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-image-columns__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-image-columns__placeholder svg {
  width: 100px;
  height: 100px;
  fill: #ddd;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablets */
@media screen and (max-width: 990px) {
  .text-image-columns {
    padding: 50px 0;
  }

  .text-image-columns__container {
    gap: 40px;
  }

  .text-image-columns__title {
    font-size: 20pxrem;
    margin-bottom: 20px;
  }

  /* Keep base sizes */
  .text-image-columns__description,
  .text-image-columns__list li,
  .text-image-columns__footer {
    font-size: 14pxrem;
  }

  /* Subtitle stays a bit larger */
  .text-image-columns__subtitle {
    font-size: 18pxrem;
  }

  .text-image-columns__image-wrapper {
    min-height: 350px;
  }
}

/* Mobile */
@media screen and (max-width: 749px) {
  .text-image-columns {
    padding: 40px 10px;
  }

  /* En móvil usamos flex para controlar el orden */
  .text-image-columns__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .text-image-columns__content {
    padding-right: 0;
    order: 1; /* Texto primero (incluye texto final) */
  }

  .text-image-columns__title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  /* Keep base sizes */
  .text-image-columns__description,
  .text-image-columns__list li,
  .text-image-columns__footer {
    font-size: 14px;
  }

  /* Subtitle stays a bit larger */
  .text-image-columns__subtitle {
    font-size: 16px;
  }

  .text-image-columns__list {
    margin-bottom: 20px;
  }

  .text-image-columns__list li {
    margin-bottom: 8px;
    padding-left: 20px;
  }

  .text-image-columns__image-wrapper {
    min-height: 300px;
    order: 2; /* Imagen después del texto final */
  }
}
}

/* Small mobile */
@media screen and (max-width: 480px) {
  .text-image-columns__title {
    font-size: 18px;
  }

  .text-image-columns__description,
  .text-image-columns__list li,
  .text-image-columns__footer {
    font-size: 14px;
  }

  .text-image-columns__subtitle {
    font-size: 14px;
  }

  .text-image-columns__image-wrapper {
    min-height: 250px;
  }
}

/* ===================================
   Accessibility
   =================================== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
