/** Shopify CDN: Minification failed

Line 77:0 Unexpected "<"
Line 250:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.noti {
  display: none;
  position: fixed;
  top: 40px;
  right: 40px;
  background: #fff;
  z-index: 99999;
  padding: 15px 30px;
  width: calc(100% - 80px);
  max-width: 400px;
  font-size: var(--f14);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  border-radius: 20px;
  text-align: center;
}

.noti .cerrar {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gris);
  color: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  cursor: pointer;
}

.noti .cerrar span {
  position: relative;
}

.noti .cerrar span:before {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.noti .cerrar span:after {
  content: '';
  display: block;
  width: 10px;
  height: 1px;
  background: var(--color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.noti-bien {
  border: 2px solid green;
}

.noti-mal {
  border: 2px solid red;
}
<style>
:root {
  --vigahome-green: #006E65;
  --vigahome-green-light: #e6f5f4;
  --vigahome-green-dark: #00544e;
}

.pricing-section {
  background: #fafdfb;
  padding: 60px 20px 20px;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2.2em;
  margin-bottom: 5px;
  color: #222;
  font-weight: 600;
}

.pricing-note-global {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: #65d9b5;
  background: var(--vigahome-green-light);
}

.pricing-card.popular::before {
  content: "Más popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #65d9b5;
  color: #003b2d;
  padding: 6px 16px;
  font-size: 0.8em;
  border-radius: 12px;
  font-weight: bold;
}

.pricing-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vigahome-green-dark);
}

.pricing-price {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #444;
}

.pricing-features {
  text-align: left;
  margin-bottom: 25px;
  padding: 0;
}

.pricing-features li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #65d9b5;
  font-weight:  700;
  font-size: 1em;
}

.pricing-button {
  background: #042b39;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  margin-top: auto;
  margin-bottom: 10px;
}

.pricing-button:hover {
  background: #65d9b5;
  color: #042b39;
}

@media (max-width: 768px) {
  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .pricing-card {
    min-width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .swiper-pagination {
    text-align: center;
    margin-top: 10px;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
  }

  .swiper-pagination-bullet-active {
    background-color: #65d9b5;
  }

  .mobile-only {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
</style>
/* Estilos opcionales si necesitas personalizar el carrusel */
.tolstoy-carousel {
  width: 100%;
  margin: 2rem 0;
}