/** Shopify CDN: Minification failed

Line 85:10 Unexpected "{"
Line 85:19 Expected ":"
Line 86:14 Expected identifier but found whitespace
Line 86:16 Unexpected "{"
Line 86:25 Expected ":"
Line 86:75 Expected ":"
Line 87:17 Expected identifier but found whitespace
Line 87:19 Unexpected "{"
Line 87:28 Expected ":"
Line 87:81 Expected ":"
... and 34 more hidden warnings

**/
.services {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.services-block {
  border-radius: 5px;
}
.service {
  display: flex;
  text-decoration: none;
  position: relative;
  align-items: center;
  gap: 15px;
}
.service.service-5::after {
  display: none;
}
/* .service-block .services-wrapper {
  border-bottom: 1px solid var(--color-base-border);
} */
/* .service::after {
  content: "";
  position: absolute;
  width: 1px;
  border-right: 1px solid var(--color-base-border);
  right: -35px;
  height: 45px;
  top: 6px;
}
.service.service-4::after {
  content: none;
} */
.service-icon {
  display: inline-block !important;
  height: 50px;
  width: 65px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center 0;
  transition: all 0.4s ease-in-out;
}
/* .service:hover .service-icon {
  transition: all 0.4s ease-in-out;
  background-position: center -75px;
} */
.service-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 25px;
  letter-spacing: 0.5px;
}
.service-subtitle {
  color: var(--color-base-text);
  line-height: 22px;
}
@media screen and (max-width: 380px) {
  .service-title {
    font-size: 16px;
    line-height: 24px;
  }
}

/* =======================================================
   SECCIÓN SERVICE – AJUSTES DE ESTILO
   ======================================================= */

/* ===== Padding general de la sección ===== */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.5 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.8 | round: 0 }}px;
  padding-left: {{ section.settings.padding_left | times: 0.5 | round: 0 }}px;
  padding-right: {{ section.settings.padding_right | times: 0.5 | round: 0 }}px;
  margin-top: {{ section.settings.margin_top | times: 0.1 | round: 0 }}px;
}

/* ===== Escritorio: padding completo ===== */
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    padding-left: {{ section.settings.padding_left }}px;
    padding-right: {{ section.settings.padding_right }}px;
    margin-top: {{ section.settings.margin_top }}px;
  }
}

/* ===== Escritorio: limitar ancho de la sección ===== */
@media screen and (min-width: 990px) {
  .service-block .page-width {
    max-width: 1100px;  /* Ajusta este valor según tu diseño */
    margin: 0 auto;      /* Centrado horizontal */
  }

  /* Reducir tamaño del texto */
  .service-block h2.title {
    font-size: 24px;
  }
  .service-block .service-title {
    font-size: 14px;
    font-weight: 600;
  }
  .service-block .service-subtitle {
    font-size: 10px;
    line-height: 1.0;
    color: #666;
  }
}

/* ===== Móvil: layout vertical sin carrusel ===== */
@media screen and (max-width: 749px) {
  /* Contenedor principal de servicios */
  .services {
    display: flex;
    flex-direction: column; /* Apila verticalmente */
    align-items: center;    /* Centra horizontal */
    gap: 20px;              /* Espacio entre bloques */
  }

  /* Cada bloque de servicio */
  .service {
    width: 90%;             /* Ocupa casi todo el ancho de pantalla */
    max-width: 500px;       /* Limita ancho máximo */
    margin: 0 auto;         /* Centrado horizontal */
    display: flex;          /* Para alinear ícono + texto */
    align-items: center;    /* Ícono verticalmente centrado con texto */
    gap: 15px;              /* Espacio entre ícono y texto */
  }

  /* Ícono del servicio */
  .service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;         /* Evita que el ícono se reduzca */
  }

  /* Texto del servicio */
  .service-description {
    text-align: left;       /* Texto alineado a la izquierda */
    flex: 1;                /* Ocupa el resto del espacio */
  }

  .service-title {
    font-size: 16px;
    margin-bottom: 4px;     /* Separación del subtítulo */
  }

  .service-subtitle {
    font-size: 12px;
    color: #666;
  }

  /* Reducir tamaño del título h2 en móviles */
  .service-block h2.title {
    font-size: 21px;        /* Ajusta según tu preferencia */
  }
}


/* ===== Header-top loop continuo para móviles ===== */
@media screen and (max-width: 749px) {
  .header-top-center {
    overflow: hidden;       /* Oculta el contenido que se salga */
    position: relative;
    width: 100%;
  }

  .header-top-center span {
    display: inline-block;
    white-space: nowrap;           /* Mantiene todo en una sola línea */
    animation: scroll-left 10s linear infinite; /* Loop continuo */
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%); /* Empieza fuera de la pantalla derecha */
    }
    100% {
      transform: translateX(-100%); /* Termina fuera de la pantalla izquierda */
    }
  }
}
