/** Shopify CDN: Minification failed

Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:34 Unexpected "{"
Line 28:18 Unexpected "{"
Line 28:27 Expected ":"
Line 35:18 Unexpected "{"
Line 35:27 Expected ":"
Line 40:18 Unexpected "{"
Line 40:27 Expected ":"
Line 47:18 Unexpected "{"
... and 17 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ================================
   ABOUT NOSOTROS – CSS ENCAPSULADO
   ================================ */

#shopify-section-{{ section.id }} {
  width: 100%;
}

/* CONTENEDOR GENERAL */
#shopify-section-{{ section.id }} .about-nosotros-full {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* HEADER */
#shopify-section-{{ section.id }} .about-nosotros-header {
  max-width: 540px;
  margin: 0 auto 48px;
}

#shopify-section-{{ section.id }} .about-nosotros-header h2 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}

/* GRID */
#shopify-section-{{ section.id }} .about-nosotros-grid {
  display: grid;
  grid-template-columns: 540px 520px;
  justify-content: center;
  align-items: center;
  gap: 72px;
  margin: 0 auto;
}

/* TEXTO */
#shopify-section-{{ section.id }} .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#shopify-section-{{ section.id }} .about-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: rgb(var(--color-foreground));
}

/* IMAGEN */
#shopify-section-{{ section.id }} .about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* MOBILE */
@media screen and (max-width: 989px) {
  #shopify-section-{{ section.id }} .about-nosotros-full {
    padding: 64px 24px;
  }

  #shopify-section-{{ section.id }} .about-nosotros-header {
    margin-bottom: 32px;
  }

  #shopify-section-{{ section.id }} .about-nosotros-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  #shopify-section-{{ section.id }} .about-image img {
    height: 380px;
  }

  #shopify-section-{{ section.id }} .about-nosotros-header h2 {
    font-size: 28px;
  }
}
.faq-editorial-full {
  width: 100%;
  background: #ffffff;
  padding: 90px 20px;
}

.faq-editorial-inner {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--font-body-family);
  font-size: 16.5px;
  line-height: 1.8;
  color: rgb(var(--color-foreground));
}

/* Título principal */
.faq-editorial-inner h2 {
  font-family: var(--font-heading-family);
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 28px;
  font-weight: 600;
}

/* Subtítulos */
.faq-editorial-inner h3 {
  font-family: var(--font-heading-family);
  font-size: 21px;
  line-height: 1.4;
  margin: 48px 0 18px;
  font-weight: 600;
}

/* Párrafos */
.faq-editorial-inner p {
  margin-bottom: 20px;
  letter-spacing: 0.1px;
}

/* Listas */
.faq-editorial-inner ul {
  margin: 20px 0 28px 22px;
}

.faq-editorial-inner li {
  margin-bottom: 12px;
}

/* Firma */
.faq-editorial-footer {
  margin-top: 48px;
  font-size: 15.5px;
  color: rgba(var(--color-foreground), 0.85);
}

/* Mobile */
@media screen and (max-width: 749px) {
  .faq-editorial-full {
    padding: 60px 18px;
  }

  .faq-editorial-inner {
    font-size: 16px;
    line-height: 1.75;
  }

  .faq-editorial-inner h2 {
    font-size: 24px;
  }

  .faq-editorial-inner h3 {
    font-size: 19px;
  }
}