/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 106:0 Unexpected "<"
Line 215:0 Unexpected "<"
Line 313:0 Unexpected "<"
Line 351:0 Unexpected "<"
Line 480:0 Unexpected "<"
Line 619:0 Unexpected "<"
Line 813:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.beneficios-section {
  padding: 4rem 1rem;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.beneficio-card {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(0, 78, 255, 0.08);
  border: 1px solid rgba(0, 78, 255, 0.1);
  padding: 1.8rem;
  transition: box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.beneficio-card:hover {
  box-shadow: 0 4px 16px rgba(0, 78, 255, 0.15);
}

.beneficio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.beneficio-icon {
  background-color: #d1fae5;
  border-radius: 100px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.beneficio-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.beneficio-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: #0d0d0d;
  margin: 0;
}

.beneficio-text {
  color: #555;
  font-size: 1.3rem;
  line-height: 1.6;
}

/* Responsive: móvil */
@media (max-width: 600px) {
  .beneficios-section {
    padding: 3rem 1.25rem; /* márgenes laterales en móvil */
  }

  .beneficio-header {
    flex-direction: row; /* mantener texto al lado del icono */
    align-items: center;
    gap: 1rem;
  }

  .beneficio-title {
    font-size: 1.45rem;
  }

  .beneficio-text {
    font-size: 1.25rem;
  }
}
</style>
<style>
.bloque-texto-section {
  padding: 3rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.bloque-texto-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.bloque-texto-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0d0d0d;
}

.bloque-texto-card {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(0, 78, 255, 0.08);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 78, 255, 0.1);
  font-size: 1.5rem;
  color: #0d0d0d;
  line-height: 1.6;
  text-align: justify;
  transition: box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.bloque-texto-card:hover {
  box-shadow: 0 4px 16px rgba(0, 78, 255, 0.15);
}

.bloque-texto-bold {
  font-weight: 700;
  font-size: 1.3rem;
  color: #000;
  text-align: center;
  margin-top: 3rem;
}

.bloque-imagenes-grid {
  display: flex;
  gap: 8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.bloque-imagen-card {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(0, 78, 255, 0.08);
  border: 1px solid rgba(0, 78, 255, 0.1);
  overflow: hidden;
  height: 280px;
  flex: 1 1 45%;
  max-width: 500px;
}

.bloque-imagen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* Si no quieres bordes en la imagen */
}

/* Idiomas */
.lang-es, .lang-ca {
  display: none;
}
body[data-lang="es"] .lang-es {
  display: inline;
}
body[data-lang="ca"] .lang-ca {
  display: inline;
}

/* Responsive */
@media (max-width: 768px) {
  .bloque-texto-title {
    font-size: 1.75rem;
  }

  .bloque-texto-card {
    font-size: 1.25rem;
    padding: 1.25rem 1.75rem;
  }

  .bloque-texto-bold {
    font-size: 1.15rem;
  }

  .bloque-imagenes-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .bloque-imagen-card {
    max-width: 100%;
  }
}
</style>
<style>
.faq-section {
  padding: 3rem 0.5rem;
}

.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1120px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #0d0d0d;
  text-align: left;
  width: 560px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 540px);
  gap: 2.25rem;
  justify-content: center;
}

.faq-card {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(0, 78, 255, 0.08);
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(0, 78, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 4px 16px rgba(0, 78, 255, 0.15);
}

.faq-question {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: #0d0d0d;
}

.faq-answer {
  color: #555;
  font-size: 1.5rem;
  line-height: 1.75;
}

/* Idiomas */
.lang-es, .lang-ca {
  display: none;
}
body[data-lang="es"] .lang-es {
  display: inline;
}
body[data-lang="ca"] .lang-ca {
  display: inline;
}

/* Responsive */
@media (max-width: 1140px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-title {
    width: 100%;
    text-align: center;
  }

  .faq-inner {
    align-items: center;
  }

  .faq-card {
    max-width: 90vw;
    padding: 0.7rem 1.25rem;
  }

  .faq-question {
    font-size: 1.25rem;
  }

  .faq-answer {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}
</style>
<style>
.footer-generalitat {
  width: 100vw;
  padding: 3rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.footer-generalitat__content {
  text-align: center;
  max-width: 100%;
}

.footer-generalitat__content img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-generalitat__content p {
  font-size: 1.25rem;
  color: #000;
  margin: 0;
}

/* Idiomas */
.footer-generalitat .lang-es,
.footer-generalitat .lang-ca {
  display: none;
}
body[data-lang="es"] .footer-generalitat .lang-es {
  display: block;
}
body[data-lang="ca"] .footer-generalitat .lang-ca {
  display: block;
}
</style>
<style>
.custom-header-wrapper {
  width: 100%;
  padding: 3rem 2rem 1rem 2rem;
  margin: 0 auto 1rem;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.custom-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
}

.custom-header {
  padding-top: 4rem !important;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

/* Botón carrito */
.header-cart {
  background: #0d0d0d;
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.2s ease;
  position: relative;
}

.header-cart:hover {
  background: #1a1a1a;
}

.header-cart svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

.cart-count {
  background: #8CC63F;
  color: #000;
  font-size: 0.95rem;
  font-weight: bold;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Selector de idioma */
.language-selector {
  padding: 0.4rem 0.8rem;
  border: 2px solid #8CC63F;
  border-radius: 8px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
}

.language-selector:focus {
  outline: none;
  border-color: #6da12f;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .header-left {
    justify-content: center;
  }

  .header-right {
    flex-direction: row;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .header-cart {
    font-size: 1.1rem;
    padding: 0.4rem 1rem;
  }
}
</style>
<style>
.hero-section {
  background: linear-gradient(to bottom right, #f8f9fa, #ffffff);
  padding: 6rem 2rem 6rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.hero-container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  animation: fadeInLeft 0.8s ease-in-out both;
}

.hero-left h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0d0d0d;
  margin-bottom: 1.5rem;
}

.hero-left h1 .verde-resaltado {
  color: #8CC63F !important;
}

.hero-left p {
  font-size: 2rem;
  color: #444;
  margin-bottom: 2rem;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-benefit {
  background: #e8f9f0;
  color: #007f5f;
  padding: 0.8rem 1.4rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.35rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 1rem 1.8rem;
  font-weight: 700;
  border-radius: 12px;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-buttons a:first-child {
  background: #0d0d0d;
  color: white;
}

.hero-buttons a:last-child {
  background: white;
  color: #111;
  border: 1px solid #ccc;
}

.hero-buttons a:hover {
  opacity: 0.9;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
  animation: fadeInRight 0.8s ease-in-out both;
}

.hero-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Idiomas */
.lang-es, .lang-ca {
  display: none;
  color: inherit;
}
body[data-lang="es"] .lang-es { display: inline; }
body[data-lang="ca"] .lang-ca { display: inline; }

/* Animaciones */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section { padding: 3rem 1rem; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-left { align-items: center; order: 1; }
  .hero-right { order: 2; margin-top: 2.5rem; justify-content: center; padding: 0; }
  .hero-left h1 { font-size: 3.2rem; margin-bottom: 1.2rem; }
  .hero-left p { font-size: 1.6rem; margin-bottom: 1.8rem; }
  .hero-benefits { justify-content: center; margin-bottom: 2rem; }
  .hero-benefit { font-size: 1.1rem; padding: 0.6rem 1.1rem; }
  .hero-buttons { justify-content: center; flex-direction: row; gap: 1rem; }
  .hero-buttons a { width: auto; padding: 1rem; font-size: 1.1rem; }
  .hero-right img { max-width: 90%; }
}
</style>
<style>
.productos-section {
  padding: 6rem 1rem;
  max-width: 1120px;
  margin: 6rem auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.productos-filtros {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.productos-filtros button {
  padding: 0.4rem 1rem;
  border-radius: 1.5rem;
  border: none;
  background: #f2f2f2;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.productos-filtros button.active {
  background: #8CC63F;
  color: #fff;
}

.productos-grid {
  display: grid;
  gap: 1.5rem;
  padding: 0 1.5rem;
  margin: 0 auto;
  max-width: 1360px;
}

@media (min-width: 1024px) {
  .productos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .productos-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.product-card {
  background-color: #ffffff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(0, 78, 255, 0.08);
  border: 1px solid rgba(0, 78, 255, 0.1);
  transition: box-shadow 0.3s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: #000000;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 78, 255, 0.15);
}

.product-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 0.2rem;
  margin-bottom: 1.8rem;
}

.product-image-placeholder {
  border-radius: 1rem;
  overflow: hidden;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-label {
  background: #f2f2f2;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 800;
}

.product-description {
  font-size: 1.15rem;
  color: #000;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  margin-top: 0.3rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.rating {
  display: flex;
  gap: 0.2rem;
}

.rating img {
  width: 18px;
  height: 18px;
}

.product-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-cart .qty-btn {
  background: #f2f2f2;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  border-radius: 8px;
  cursor: pointer;
}

.product-cart .cart-qty {
  font-weight: bold;
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
}

.product-cart input[type='number'] {
  display: none;
}

.product-cart .add-btn {
  background: #0d0d0d;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

/* Idiomas */
.lang-es, .lang-ca {
  display: none;
}
body[data-lang="es"] .lang-es {
  display: inline;
}
body[data-lang="ca"] .lang-ca {
  display: inline;
}
.product-label-ingredientes {
  background: #8CC63F;
  color: white;
  text-decoration: none;
  display: inline-block;
}

</style>