/** Shopify CDN: Minification failed

Line 123:0 Unexpected "{"
Line 123:1 Expected identifier but found "%"
Line 124:2 Unexpected "{"
Line 124:3 Expected identifier but found "%"
Line 125:4 All "@import" rules must come first
Line 126:2 Unexpected "{"
Line 126:3 Expected identifier but found "%"
Line 127:4 All "@import" rules must come first
Line 128:2 Unexpected "{"
Line 128:3 Expected identifier but found "%"
... and 45 more hidden warnings

**/


/* CSS from section stylesheet tags */
.testimonios-carrusel {
  padding: 4rem 2rem;
  background-color: var(--bg);
}
.testimonios-carrusel .container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonios-carrusel h2 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: var(--heading-size);
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.testimonios-carrusel .subtitulo {
  text-align: center;
  margin-bottom: 2rem;
  font-size: var(--subtitle-size);
  color: var(--subtitle-color);
  font-family: var(--body-font);
}

.testimonios-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonios-slider.scrollable {
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 1rem;
}
.testimonios-slider.scrollable::-webkit-scrollbar {
  display: none;
}

.testimonio-card {
  background: white;
  border-radius: 8px;
  flex: 0 0 512px;
  padding: 1.5rem;
  scroll-snap-align: start;
}
.testimonio-imagenes {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonio-imagenes .img-wrapper {
  position: relative;
  width: 50%;
  aspect-ratio: 2/3;
  overflow: hidden;
}
.testimonio-imagenes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.img-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 12px;
  background-color: var(--tag-bg);
  color: var(--tag-text);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.testimonio-nombre {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
  font-size: var(--name-size);
}
.estrellas {
  color: #f4c150;
  margin-bottom: 0.75rem;
}
.testimonio-texto {
  font-size: var(--body-size);
  color: var(--text-color);
  font-family: var(--body-font);
  margin-bottom: 1rem;
}
.testimonio-video a {
  font-size: var(--link-size);
  color: var(--text-color);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .testimonios-carrusel h2 {
    font-size: calc(var(--heading-size) * 0.8);
  }
  .testimonio-card {
    flex: 0 0 100%;
  }
}
{% case section.settings.font_family %}
  {% when "inter" %}
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
  {% when "poppins" %}
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
  {% when "raleway" %}
    @import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');
  {% when "montserrat" %}
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
  {% when "open_sans" %}
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
{% endcase %}

.anuncio-barra {
  width: 100%;
  font-family: var(--font-family);
}
.anuncio-barra .bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.anuncio-barra .bar-inner p {
  margin: 0;
}
.anuncio-barra .sticky {
  position: sticky;
  top: 0;
  z-index: 20;
}
.anuncio-barra .marquee {
  overflow: hidden;
}
.anuncio-barra .marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee var(--marquee-speed) linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
.anuncio-barra .btn {
  margin-left: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  font-family: var(--font-family);
}
@media screen and (max-width: 768px) {
  .anuncio-barra .bar-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
.image-compare-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.image-compare-title {
  font-size: {{ section.settings.title_size }}px;
  color: {{ section.settings.title_color }};
  font-family: {{ section.settings.title_font }};
  margin-bottom: 10px;
}
.image-compare-subtitle {
  font-size: {{ section.settings.subtitle_size }}px;
  color: {{ section.settings.subtitle_color }};
  font-family: {{ section.settings.subtitle_font }};
  margin-bottom: 40px;
}
.compare-slider-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.compare-card {
  width: 282px;
  text-align: left;
}
.image-compare-box {
  position: relative;
  width: 100%;
  height: 341px;
  overflow: hidden;
  border-radius: 12px;
}
.image-compare-box image-comparison-slider {
  width: 100%;
  height: 100%;
}
.image-compare-box::part(handle) {
  background: #fff;
  width: 30px;
  height: 30px;
  border: 2px solid #999;
  border-radius: 50%;
}
.compare-text {
  margin-top: 15px;
  font-size: {{ section.settings.text_size }}px;
  color: {{ section.settings.text_color }};
  font-family: {{ section.settings.text_font }};
}
.compare-name {
  margin-top: 8px;
  font-weight: bold;
  color: {{ section.settings.text_color }};
}
.compare-stars {
  color: {{ section.settings.star_color }};
  margin-top: 5px;
}
.marquee-logos {
  overflow: hidden;
  background-color: var(--bg);
  padding: 2rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--speed) linear infinite;
  gap: var(--gap);
}
.marquee-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
}
.marquee-logos img {
  height: var(--logo-height);
  max-height: 100px;
  object-fit: contain;
  display: block;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.video-testimonios {
  padding: 60px 20px;
  background-color: var(--bg);
  font-family: var(--font-family);
}
.video-testimonios .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.video-testimonios h2 {
  font-size: var(--heading-size);
  margin-bottom: 10px;
  color: var(--heading-color);
      text-align: center;
margin-top: 0px;
   
    font-weight: 700;
}
.video-testimonios .subtitle {
  font-size: var(--subtitle-size);
  color: var(--subtitle-color);
  margin-bottom: 40px;
}
.videos-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.videos-grid iframe {
  width: 100%;
  height: 320px;
  max-width: 560px;
  border: none;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .videos-grid {
    flex-direction: column;
    align-items: center;
  }
}
.benefits-tabler {
  padding: 4rem 1rem;
  text-align: center;
}
.benefits-tabler .title {
  font-size: var(--font-size-title, 36px);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-title, #000);
  font-family: var(--font-family-title, inherit);
}
.benefits-tabler .subtitle {
  font-size: var(--font-size-subtitle, 18px);
  color: var(--color-subtitle, #333);
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-family: var(--font-family-subtitle, inherit);
}
.benefits-tabler .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-block {
  padding: 2rem 1rem;
  border-radius: 12px;
  background-color: var(--benefit-bg, #f3f3f3);
}
.benefit-block .emoji {
  font-size: 40px;
  margin-bottom: 1rem;
}
.benefit-block svg {
  width: 40px;
  height: 40px;
  stroke: var(--icon-color, #000);
  stroke-width: 1.5;
  margin-bottom: 1rem;
}
.benefit-block p {
  font-weight: 600;
  font-size: var(--font-size-text, 16px);
  color: var(--text-color, #000);
}