/** Shopify CDN: Minification failed

Line 178:0 Unexpected "}"

**/
/* ==========================================================
   AQUAVISTA™ — SISTEMA VISUAL BASE
   ========================================================== */

:root {
  /* Colores */
  --aq-primary: #0b74ff;
  --aq-primary-dark: #095dd1;
  --aq-primary-soft: #eaf4ff;

  --aq-text: #111111;
  --aq-text-secondary: #666666;

  --aq-background: #ffffff;
  --aq-background-soft: #f8fbfe;

  --aq-border: #ececec;
  --aq-stars: #ffc107;

  /* Bordes */
  --aq-radius-small: 12px;
  --aq-radius-medium: 18px;

  /* Sombra premium */
  --aq-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  /* Espaciados */
  --aq-space-1: 8px;
  --aq-space-2: 16px;
  --aq-space-3: 24px;
  --aq-space-4: 32px;
  --aq-space-5: 48px;
  --aq-space-6: 64px;

  /* Anchura máxima */
  --aq-page-width: 1200px;
}

/* Evita que las secciones AquaVista hereden fondos grises */
.aq-section {
  width: 100%;
  background: var(--aq-background);
  color: var(--aq-text);
  box-sizing: border-box;
}

.aq-section *,
.aq-section *::before,
.aq-section *::after {
  box-sizing: border-box;
}

/* Contenedor general */
.aq-container {
  width: 100%;
  max-width: var(--aq-page-width);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Títulos */
.aq-title {
  margin: 0;
  color: var(--aq-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Subtítulos */
.aq-subtitle {
  margin: 0;
  color: var(--aq-text-secondary);
  font-family: inherit;
  font-size: 18px;
  line-height: 1.65;
}

/* Texto azul de marca */
.aq-accent {
  color: var(--aq-primary);
}

/* Botón principal */
.aq-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid var(--aq-primary);
  border-radius: 14px;
  background: var(--aq-primary);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.aq-button:hover {
  border-color: var(--aq-primary-dark);
  background: var(--aq-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Tarjetas */
.aq-card {
  border: 1px solid var(--aq-border);
  border-radius: var(--aq-radius-medium);
  background: var(--aq-background);
  box-shadow: var(--aq-shadow);
}

/* Separador */
.aq-divider {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--aq-border);
}

/* Accesibilidad */
.aq-button:focus-visible,
.aq-section summary:focus-visible,
.aq-section a:focus-visible {
  outline: 3px solid rgba(11, 116, 255, 0.28);
  outline-offset: 3px;
}

/* Móvil */
@media screen and (max-width: 749px) {
  .aq-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .aq-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .aq-subtitle {
    font-size: 16px;
    line-height: 1.55;
  }

  .aq-button {
    width: 100%;
    min-height: 50px;
    padding: 14px 24px;
  }
}

/* Usuarios que prefieren menos animación */
@media (prefers-reduced-motion: reduce) {
  .aq-button {
    transition: none;
  }
}
}/* ==========================================================
   BENEFICIOS PREMIUM REUTILIZABLES
   ========================================================== */

.premium-benefits {
  width: 100%;
  padding: 32px 0;
  background: #ffffff;
}

.premium-benefits__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.premium-benefits__heading {
  margin: 0 0 28px;
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
  text-align: center;
}

.premium-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.premium-benefits__item {
  padding: 24px 18px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-benefits__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #0b74ff;
}

.premium-benefits__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-benefits__item h3 {
  margin: 0 0 8px;
  color: #111111;
  font-size: 18px;
  line-height: 1.25;
}

.premium-benefits__item p {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 749px) {
  .premium-benefits {
    padding: 22px 0;
  }

  .premium-benefits__container {
    padding: 0 12px;
  }

  .premium-benefits__heading {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .premium-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .premium-benefits__item {
    padding: 16px 8px;
    border-radius: 14px;
  }

  .premium-benefits__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  .premium-benefits__item h3 {
    font-size: 13px;
    line-height: 1.2;
  }

  .premium-benefits__item p {
    font-size: 11px;
    line-height: 1.35;
  }
}