:root {
  --blanco: #ffffff;
  --fondo: #f9f7f4;
  --fondo-alt: #f2ede8;
  --negro: #1a1a1a;
  --gris: #6b6b6b;
  --gris-claro: #d4cfc9;
  --acento: #8B3A3A;
  --acento-dark: #6e2e2e;
  --acento-light: #f5eded;
  --borde: #e8e2db;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--fondo);
  color: var(--negro);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Spectral', serif; }

/* NAV */
nav {
  background: var(--negro);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--acento);
}
.logo {
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fondo);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-style: italic;
}
.logo em { color: #A593C2; font-style: normal; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--fondo);
  text-decoration: none;
  font-size: 0.87rem;
  opacity: 0.65;
  transition: opacity 0.2s;
  font-family: 'Lato', sans-serif;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--acento) !important;
  color: var(--blanco) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-weight: 700 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--acento-dark) !important; }

/* DROPDOWN */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger { cursor: default; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  min-width: 210px;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--negro);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--acento);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: -1;
}
.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-size: 0.83rem;
  color: var(--fondo) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0.85 !important;
  transition: background 0.15s, opacity 0.15s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); opacity: 1 !important; color: var(--blanco) !important; }
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }

/* SECTIONS */
section { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }

/* SECTION LABEL */
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 1.2rem;
  display: block;
  font-family: 'Lato', sans-serif;
}

/* HERO */
.hero-wrap {
  background: var(--negro);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: var(--acento);
  border-radius: 50%;
  opacity: 0.12;
}
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  position: relative;
}
.tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--acento);
  color: var(--blanco);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--fondo);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: #A593C2;
}
.hero p.sub {
  font-size: 1.05rem;
  color: var(--fondo);
  opacity: 0.7;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.btn-primary {
  display: inline-block;
  background: var(--acento);
  color: var(--blanco);
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--acento-dark); transform: translateY(-1px); }
.hero-note {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--fondo);
  opacity: 0.35;
  letter-spacing: 0.03em;
  font-family: 'Lato', sans-serif;
}

/* STRIP */
.strip {
  background: #A593C2;
  padding: 0.7rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  justify-content: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--negro);
}
.strip span::before { content: '✦ '; }

/* PROBLEMA */
.problema { background: var(--fondo-alt); }
.problema h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  max-width: 600px;
}
.problema p.intro {
  color: var(--negro);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.postit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.postit {
  background: var(--blanco);
  padding: 1.3rem 1.2rem;
  border-left: 4px solid #A593C2;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.06);
  transform: rotate(-0.5deg);
  border: 1px solid var(--borde);
  border-left: 4px solid #A593C2;
}
.postit:nth-child(even) { transform: rotate(0.5deg); border-left-color: var(--acento); }
.postit:nth-child(3n) { transform: rotate(-1deg); border-left-color: var(--negro); }
.postit .num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--negro);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}
.postit .consecuencia {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--acento);
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
}

/* BENEFICIOS */
.beneficios-wrap { background: var(--negro); max-width: 100%; }
.beneficios { color: var(--fondo); }
.beneficios .section-label { color: #A593C2; }
.beneficios h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--fondo);
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.beneficios p.intro { opacity: 0.6; line-height: 1.8; max-width: 560px; margin-bottom: 2rem; font-weight: 300; }
.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.ben-item {
  padding: 1.5rem;
  background: var(--negro);
  transition: background 0.2s;
}
.ben-item:hover { background: #1c1c1c; }
.ben-item .num {
  font-size: 0.65rem;
  font-weight: 700;
  color: #A593C2;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Lato', sans-serif;
}
.ben-item h3 { font-size: 0.95rem; color: var(--fondo); margin-bottom: 0.4rem; font-weight: 600; }
.ben-item p { font-size: 0.82rem; opacity: 0.5; line-height: 1.55; font-weight: 300; }

/* PAQUETES */
.paquetes { background: var(--fondo); }
.paquetes h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.paquetes p.intro {
  color: var(--negro);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.pack-list { display: flex; flex-direction: column; gap: 1px; background: var(--borde); border: 1px solid var(--borde); }
.pack {
  background: var(--fondo);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  cursor: pointer;
  transition: background 0.15s;
}
.pack:hover, .pack.open { background: var(--blanco); }
.pack-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--negro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
  font-family: 'Lato', sans-serif;
}
.pack-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--acento);
  color: var(--blanco);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
  font-family: 'Lato', sans-serif;
}
.pack-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--negro);
  font-family: 'Spectral', serif;
  letter-spacing: -0.01em;
}
.pack-desc { font-size: 0.87rem; color: var(--negro); line-height: 1.55; font-weight: 300; }
.pack-right { text-align: right; }
.pack-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  white-space: nowrap;
  font-family: 'Spectral', serif;
}
.pack-price-note {
  font-size: 0.68rem;
  color: var(--negro);
  margin-top: 3px;
  white-space: nowrap;
  font-family: 'Lato', sans-serif;
}
.pack-toggle {
  font-size: 0.7rem;
  color: var(--acento);
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
  user-select: none;
  letter-spacing: 0.04em;
  font-family: 'Lato', sans-serif;
}
.pack-details {
  display: none;
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid var(--borde);
  margin-top: 0.75rem;
}
.pack.open .pack-details { display: block; }
.pack-ideal {
  font-size: 0.78rem;
  color: var(--negro);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  font-weight: 300;
}
.pack-ideal strong { color: var(--negro); font-weight: 700; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.83rem;
  line-height: 1.4;
  color: var(--negro);
}
.item::before {
  content: '✓';
  color: #A593C2;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 1px;
}
.pack-result {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--negro);
  border-left: 3px solid var(--acento);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.55;
  font-family: 'Spectral', serif;
}
.price-breakdown {
  background: var(--negro);
  color: var(--fondo);
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
}
.price-breakdown .row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  opacity: 0.6;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.price-breakdown .row strong { opacity: 1; color: var(--fondo); }
.price-breakdown .row.total {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 4px;
  padding-top: 8px;
  opacity: 1;
  font-weight: 700;
}
.price-breakdown .row.total span:last-child {
  color: #A593C2;
  font-size: 1rem;
  font-family: 'Spectral', serif;
}

/* NO INCLUYE */
.noinc-wrap { background: #A593C2; max-width: 100%; }
.noinc { color: var(--negro); }
.noinc .section-label { color: var(--acento-dark); }
.noinc h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  background: var(--negro);
  color: var(--fondo);
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

/* CTA FINAL */
.cta-wrap { background: var(--acento); max-width: 100%; }
.cta { text-align: center; color: var(--blanco); padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.cta h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta p { opacity: 0.8; font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.7; font-weight: 300; }
.btn-light {
  display: inline-block;
  background: var(--fondo);
  color: var(--acento-dark);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: transform 0.15s, background 0.2s;
}
.btn-light:hover { transform: translateY(-2px); background: var(--blanco); }
.cta-note {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
  font-family: 'Lato', sans-serif;
}

/* FOOTER */
footer {
  background: #111;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Spectral', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.footer-logo em { font-style: italic; color: #A593C2; }
.footer-social { display: flex; gap: 1.25rem; align-items: center; }
.footer-social a { opacity: 0.4; transition: opacity 0.2s; }
.footer-social a:hover { opacity: 0.9; }
.footer-social img { width: 22px; height: 22px; object-fit: contain; filter: brightness(10); }
.footer-copy {
  width: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}


/* RESPONSIVE */
@media (max-width: 540px) {
  .pack { grid-template-columns: 1fr; }
  .pack-right { text-align: left; }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fondo);
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: var(--negro);
  z-index: 150;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: right 0.3s ease;
  display: flex;
}
.mobile-menu a {
  color: var(--fondo);
  text-decoration: none;
  font-size: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Lato', sans-serif;
  opacity: 0.8;
}
.mobile-menu .nav-cta {
  margin-top: 1.5rem;
  background: var(--acento);
  color: var(--blanco) !important;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-bottom: none;
  font-weight: 700;
  border-radius: 2px;
  opacity: 1;
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 140;
}
.mobile-menu.open { right: 0; }
.mobile-overlay.open { display: block; }
.mobile-menu-section {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acento);
  padding-top: 0.25rem;
  margin-bottom: -0.5rem;
}
.mobile-sub {
  font-size: 0.88rem !important;
  padding-left: 0.75rem !important;
  opacity: 0.75;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* FABs */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.3); }
.fab-whatsapp svg { width: 26px; height: 26px; }
.fab-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--negro);
  color: var(--fondo);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top:hover { background: var(--acento); border-color: transparent; }

