/** Shopify CDN: Minification failed

Line 732:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:combo-latidos (INDEX:19) */
:root {
  --cl-bg: #1A1612;
  --cl-gold: #C9A84C;
  --cl-cream: #FAF7F2;
  --cl-surface: #231F1A;
  --cl-border: rgba(201,168,76,0.25);
  --cl-text: #FAF7F2;
  --cl-text-muted: rgba(250,247,242,0.65);
  --cl-radius: 8px;
  --cl-radius-lg: 16px;
  --cl-font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --cl-font-body: 'Montserrat', system-ui, sans-serif;
  --cl-transition: 0.25s ease;
  --cl-verde: #4a7c59;
  --cl-rojo: #8b3a3a;
  --cl-azul: #2c5f8a;
}

.cl-page {
  background: var(--cl-bg);
  color: var(--cl-text);
  font-family: var(--cl-font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

.cl-trust-bar {
  background: var(--cl-gold);
  color: var(--cl-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2rem;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cl-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

.cl-hero__eyebrow {
  color: var(--cl-gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.cl-hero__title {
  font-family: var(--cl-font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--cl-cream);
}

.cl-hero__subtitle {
  color: var(--cl-text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.cl-hero__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cl-hero__price-before {
  color: var(--cl-text-muted);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.cl-hero__price-current {
  font-family: var(--cl-font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cl-gold);
}

.cl-hero__savings {
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--cl-border);
  color: var(--cl-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.cl-hero__image {
  border-radius: var(--cl-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.cl-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--cl-radius);
  font-family: var(--cl-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity var(--cl-transition), transform var(--cl-transition);
}

.cl-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cl-btn:active { transform: translateY(0); }

.cl-btn--primary {
  background: var(--cl-gold);
  color: var(--cl-bg);
}

.cl-btn--whatsapp {
  background: #25D366;
  color: #fff;
  margin-top: 0.5rem;
}

.cl-btn--ghost {
  background: transparent;
  color: var(--cl-cream);
  border: 1px solid var(--cl-border);
}

.cl-btn--full { width: 100%; }
.cl-btn--sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
.cl-btn--large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.cl-benefits {
  background: var(--cl-surface);
  padding: 4rem 2rem;
}

.cl-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cl-benefit-card {
  padding: 1.75rem;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-lg);
  background: var(--cl-bg);
}

.cl-benefit-card__icon {
  display: block;
  color: var(--cl-gold);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.cl-benefit-card h3 {
  font-family: var(--cl-font-heading);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--cl-cream);
}

.cl-benefit-card p {
  color: var(--cl-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.cl-selector {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.cl-section-title {
  font-family: var(--cl-font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--cl-cream);
}

.cl-section-subtitle {
  text-align: center;
  color: var(--cl-text-muted);
  margin: 0 0 2.5rem;
}

.cl-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cl-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: 50px;
  color: var(--cl-text-muted);
  font-family: var(--cl-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--cl-transition);
}

.cl-tab--active,
.cl-tab:hover {
  border-color: var(--cl-gold);
  color: var(--cl-cream);
}

.cl-tab--active { background: rgba(201,168,76,0.1); }

.cl-tab__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cl-tab__dot--verde { background: var(--cl-verde); }
.cl-tab__dot--rojo  { background: var(--cl-rojo); }
.cl-tab__dot--azul  { background: var(--cl-azul); }

.cl-tab__badge {
  background: var(--cl-gold);
  color: var(--cl-bg);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cl-panel { display: none; }
.cl-panel--active { display: block; }

.cl-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cl-panel__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cl-thumb {
  border-radius: var(--cl-radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--cl-transition);
  aspect-ratio: 1;
}

.cl-thumb--active { border-color: var(--cl-gold); }

.cl-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cl-panel__name {
  font-family: var(--cl-font-heading);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--cl-cream);
}

.cl-panel__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cl-price-before {
  color: var(--cl-text-muted);
  font-size: 0.9rem;
  text-decoration: line-through;
}

.cl-price-current {
  font-family: var(--cl-font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cl-gold);
}

.cl-price-savings {
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--cl-border);
  color: var(--cl-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.cl-size-selector { margin-bottom: 1.5rem; }

.cl-size-selector__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.cl-size-selector__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cl-text-muted);
}

.cl-size-guide-trigger {
  background: none;
  border: none;
  color: var(--cl-gold);
  font-size: 0.8rem;
  font-family: var(--cl-font-body);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cl-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cl-size-option {
  position: relative;
  cursor: pointer;
}

.cl-size-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cl-size-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--cl-transition);
  color: var(--cl-text);
}

.cl-size-option input:checked + span {
  border-color: var(--cl-gold);
  background: rgba(201,168,76,0.12);
  color: var(--cl-gold);
}

.cl-size-option--sold-out span {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.cl-add-to-cart {
  margin-bottom: 0.75rem;
}

.cl-add-to-cart--loading {
  opacity: 0.7;
  pointer-events: none;
}

.cl-panel__unavailable {
  text-align: center;
  padding: 3rem;
  color: var(--cl-text-muted);
  font-style: italic;
}

.cl-reviews {
  background: var(--cl-surface);
  padding: 5rem 2rem;
}

.cl-reviews .cl-section-title {
  margin-bottom: 2.5rem;
}

.cl-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cl-review-card {
  background: var(--cl-bg);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-lg);
  padding: 2rem;
}

.cl-review-card__stars {
  color: var(--cl-gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cl-review-card__text {
  font-style: italic;
  color: var(--cl-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.cl-review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cl-gold);
  letter-spacing: 0.06em;
}

.cl-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.cl-faq .cl-section-title { margin-bottom: 2.5rem; }

.cl-faq__list { display: flex; flex-direction: column; gap: 0.75rem; }

.cl-faq__item {
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius);
  background: var(--cl-surface);
  overflow: hidden;
}

.cl-faq__question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cl-cream);
}

.cl-faq__question::after {
  content: '+';
  color: var(--cl-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--cl-transition);
}

.cl-faq__item[open] .cl-faq__question::after { transform: rotate(45deg); }
.cl-faq__question::-webkit-details-marker { display: none; }

.cl-faq__answer {
  padding: 0 1.5rem 1.2rem;
  color: var(--cl-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.cl-faq__answer p { margin: 0; }

.cl-final-cta {
  background: linear-gradient(135deg, #231F1A 0%, #1A1612 100%);
  border-top: 1px solid var(--cl-border);
  border-bottom: 1px solid var(--cl-border);
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cl-final-cta__title {
  font-family: var(--cl-font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin: 0;
  color: var(--cl-cream);
}

.cl-final-cta__sub {
  color: var(--cl-text-muted);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.cl-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cl-surface);
  border-top: 1px solid var(--cl-border);
  padding: 0.75rem 1rem;
}

.cl-mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  margin: 0 auto;
}

.cl-mobile-cta__info {
  display: flex;
  flex-direction: column;
}

.cl-mobile-cta__name {
  font-size: 0.75rem;
  color: var(--cl-text-muted);
}

.cl-mobile-cta__price {
  font-family: var(--cl-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cl-gold);
}

.cl-modal {
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--cl-radius-lg);
  color: var(--cl-text);
  max-width: 520px;
  width: calc(100vw - 2rem);
  padding: 0;
  margin: auto;
}

.cl-modal::backdrop {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}

.cl-modal__inner { padding: 2rem; position: relative; }

.cl-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--cl-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.cl-modal__title {
  font-family: var(--cl-font-heading);
  font-size: 1.3rem;
  margin: 0 0 0.75rem;
  padding-right: 2rem;
  color: var(--cl-cream);
}

.cl-modal__intro {
  color: var(--cl-text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}

.cl-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cl-size-table th,
.cl-size-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--cl-border);
  text-align: left;
}

.cl-size-table th {
  color: var(--cl-gold);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cl-size-table td { color: var(--cl-text-muted); }
.cl-size-table tr:last-child td { border-bottom: none; }

.cl-modal__tip {
  font-size: 0.82rem;
  color: var(--cl-gold);
  font-style: italic;
  margin: 0;
}

.cl-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: #2d5a27;
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--cl-font-body);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.cl-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .cl-hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2.5rem;
    text-align: center;
    gap: 2rem;
  }

  .cl-hero__image { grid-row: 1; }
  .cl-hero__content { grid-row: 2; }
  .cl-hero__pricing { justify-content: center; }

  .cl-panel__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cl-panel__images { grid-template-columns: repeat(3, 1fr); }

  .cl-trust-bar { gap: 0.4rem 1rem; font-size: 0.68rem; }

  .cl-selector, .cl-faq { padding: 3.5rem 1.25rem; }

  .cl-mobile-cta { display: block; }

  .cl-final-cta { padding: 4rem 1.25rem 6rem; }
}
/* END_SECTION:combo-latidos */

/* START_SECTION:combos-latidos (INDEX:20) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #0F0D0B;
  --bg2: #161210;
  --bg3: #1E1A16;
  --gold: #C9A84C;
  --gold-soft: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.2);
  --cream: #FAF7F2;
  --muted: rgba(250,247,242,0.55);
  --verde: #3d6b4a;
  --rojo: #7a2f2f;
  --azul: #264f75;
  --r: 10px;
  --rl: 18px;
  --f-head: 'Playfair Display', Georgia, serif;
  --f-body: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.22,1,0.36,1);
  --wpp: #25D366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* NAV */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(15,13,11,0.95), transparent);
  backdrop-filter: blur(8px);
}

.lp-nav__brand {
  font-family: var(--f-head);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.lp-nav__cta {
  background: var(--wpp);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* HERO */
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.lp-hero__media {
  position: absolute;
  inset: 0;
}

.lp-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.lp-hero__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg3);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.97) 0%,
    rgba(10,8,6,0.75) 40%,
    rgba(10,8,6,0.2) 70%,
    transparent 100%
  );
}

.lp-hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 3.5rem;
  max-width: 540px;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.lp-hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.lp-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.lp-hero__desc {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.lp-hero__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 1.75rem;
}

.lp-hero__price-old {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: line-through;
}

.lp-hero__price-now {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.lp-hero__price-save {
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
}

.lp-hero__sub {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

/* BUTTONS */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--f-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), opacity 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}

.lp-btn:hover { transform: translateY(-2px); opacity: 0.93; }
.lp-btn:active { transform: translateY(0); }

.lp-btn--hero {
  background: var(--wpp);
  color: #fff;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  width: 100%;
  max-width: 360px;
}

.lp-btn--primary {
  background: var(--wpp);
  color: #fff;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.28);
}

.lp-btn--full { width: 100%; }

.lp-btn--sticky {
  background: var(--wpp);
  color: #fff;
  font-size: 0.88rem;
  padding: 0.65rem 1.3rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.lp-btn--final {
  background: var(--wpp);
  color: #fff;
  font-size: 1.1rem;
  padding: 1.1rem 2.5rem;
  box-shadow: 0 8px 40px rgba(37,211,102,0.4);
}

/* SOCIAL PROOF BAR */
.lp-social-proof {
  background: var(--bg3);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 1.5rem 1.5rem;
}

.lp-social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-stat__num {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.lp-stat__label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.04em;
}

.lp-stat__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--gold-border);
}

/* REVIEWS */
.lp-reviews {
  padding: 4rem 0;
  overflow: hidden;
}

.lp-section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.lp-reviews__track {
  display: flex;
  gap: 1.25rem;
  padding: 0 1.5rem 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.lp-reviews__track::-webkit-scrollbar { display: none; }

.lp-review {
  flex: 0 0 280px;
  background: var(--bg3);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  padding: 1.5rem;
  scroll-snap-align: start;
}

.lp-review__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.lp-review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-review__name {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
}

.lp-review__location {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.lp-review__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-left: auto;
  flex-shrink: 0;
}

.lp-review__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

/* PRODUCT */
.lp-product {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.lp-gallery__main {
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg3);
}

.lp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.lp-gallery__thumbs {
  display: none;
  gap: 0.6rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.lp-gallery__thumbs--active {
  display: flex;
}

.lp-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.lp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-thumb--active { border-color: var(--gold); }

.lp-product__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.lp-product__title {
  font-family: var(--f-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.lp-product__desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.lp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lp-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.lp-feature__icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp-feature strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.1rem;
}

.lp-feature span {
  font-size: 0.82rem;
  color: var(--muted);
}

.lp-product__colors { margin-bottom: 1.75rem; }

.lp-product__colors-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.lp-color-dots {
  display: flex;
  gap: 0.6rem;
}

.lp-color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  outline: none;
}

.lp-color-dot:hover { transform: scale(1.1); }
.lp-color-dot--active { border-color: var(--cream); transform: scale(1.15); }
.lp-color-dot--azul  { background: #3a6d9e; }
.lp-color-dot--verde { background: #4a7c59; }
.lp-color-dot--rojo  { background: #8b3a3a; }

.lp-product__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.lp-product__pricing s {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: line-through;
}

.lp-product__pricing strong {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.lp-save-pill {
  background: #1a3d1e;
  color: #5cb85c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.lp-product__cta-block { display: flex; flex-direction: column; gap: 0; }

.lp-product__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* BRAND */
.lp-brand {
  background: var(--bg3);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 5rem 1.5rem;
}

.lp-brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-brand__title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.lp-brand__body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.lp-brand__body em { color: var(--gold); font-style: italic; }

.lp-brand__price-card {
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--rl);
  padding: 2rem;
  text-align: center;
}

.lp-brand__price-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.lp-brand__price-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.lp-brand__price-card-price s {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: line-through;
}

.lp-brand__price-card-price strong {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.lp-brand__price-card-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* FAQ */
.lp-faq {
  padding: 5rem 1.5rem;
}

.lp-faq__inner {
  max-width: 680px;
  margin: 0 auto;
}

.lp-faq__title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--cream);
}

.lp-faq__list { display: flex; flex-direction: column; gap: 0.6rem; }

.lp-faq__item {
  background: var(--bg3);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.lp-faq__item[open] { border-color: rgba(201,168,76,0.45); }

.lp-faq__item summary {
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cream);
  gap: 1rem;
}

.lp-faq__item summary::-webkit-details-marker { display: none; }

.lp-faq__item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.lp-faq__item[open] summary::after { transform: rotate(45deg); }

.lp-faq__item p {
  padding: 0 1.4rem 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* FINAL CTA */
.lp-final {
  padding: 6rem 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.lp-final__inner { max-width: 520px; margin: 0 auto; }

.lp-final__title {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.lp-final__sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lp-final__price {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.lp-final__price s { text-decoration: line-through; }
.lp-final__price strong { color: var(--gold); }

/* STICKY BAR */
.lp-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(22,18,16,0.97);
  border-top: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.lp-sticky--visible { transform: translateY(0); }

.lp-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.lp-sticky__name {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

.lp-sticky__price {
  font-size: 1rem;
  color: var(--cream);
}

.lp-sticky__price s {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
  margin-right: 0.35rem;
}

.lp-sticky__price strong { color: var(--gold); font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .lp-hero__content { padding: 1.5rem 1.25rem 5rem; }
  .lp-hero__title { font-size: 2.6rem; }

  .lp-product__inner,
  .lp-brand__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .lp-product { padding: 3.5rem 1.25rem; }
  .lp-brand { padding: 3.5rem 1.25rem; }
  .lp-faq { padding: 3.5rem 1.25rem; }
  .lp-final { padding: 4rem 1.25rem 5rem; }

  .lp-stat__divider { display: none; }
  .lp-social-proof__inner { gap: 1.25rem; }

  .lp-review { flex: 0 0 85vw; }

  .lp-btn--hero { font-size: 1rem; }
}

@media (max-width: 380px) {
  .lp-hero__title { font-size: 2.2rem; }
  .lp-hero__price-now { font-size: 2rem; }
}
/* END_SECTION:combos-latidos */