/* ── Reset & Tokens ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:     #ffffff;
  --bg-2:   #f3f3f3;
  --bg-3:   #e6e6e6;
  --gold:   #0f0f0f;
  --gold-2: #3a3a3a;
  --text:   #0a0a0a;
  --text-2: rgba(10, 10, 10, 0.55);
  --text-3: rgba(10, 10, 10, 0.32);
  --border: rgba(10, 10, 10, 0.1);
  --card:   rgba(10, 10, 10, 0.035);
  --radius: 12px;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 760px; }

/* ── Custom Cursor ──────────────────────────────────────────────── */
#cursor {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
#cursorRing {
  width: 34px; height: 34px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: difference;
}
#cursor.hover { transform: scale(3.5); }
#cursorRing.hover { width: 58px; height: 58px; opacity: 0.5; }

/* ── Nav ────────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.35s;
}
#nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 40px;
}
.logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--text-2); letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  color: #ffffff; background: var(--gold);
  padding: 9px 22px; border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--gold-2); transform: translateY(-1px); }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: #ffffff; z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--text-2);
  font-size: 24px; cursor: pointer;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.mob-link {
  display: block; padding: 12px 0;
  font-family: var(--serif); font-size: 36px; font-weight: 500;
  color: var(--text-2); transition: color 0.2s;
}
.mob-link:hover, .mob-link.gold { color: var(--gold); }

/* ── Shared Atoms ───────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3); font-weight: 500; margin-bottom: 18px;
}
.eyebrow.center { justify-content: center; }
.gold-line {
  display: inline-block; width: 28px; height: 1.5px;
  background: var(--gold); flex-shrink: 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500; line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--text);
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #ffffff;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  padding: 13px 26px; border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-gold.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border); color: var(--text-2);
  font-size: 14px; padding: 13px 26px; border-radius: 100px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(246,241,235,0.4); color: var(--text); }

.btn-outline-gold {
  display: block; text-align: center;
  border: 1px solid var(--border); color: var(--text);
  font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: 100px;
  transition: all 0.2s;
}
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 140px 28px 100px;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}
.hero-overlay-side {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.8) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(246,241,235,0.45); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 500; line-height: 1.08;
  letter-spacing: -1px; margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-2); line-height: 1.65;
  margin-bottom: 40px; max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}
.hstat {
  flex: 1; padding: 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
}
.hstat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: #ffffff; line-height: 1;
}
.hstat-plus { font-size: 22px; color: #ffffff; }
.hstat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-wrap: nowrap;
}
.hstat-label {
  font-family: var(--serif); font-size: 32px;
  font-weight: 600; color: #ffffff; line-height: 1;
}
.hstat p { font-size: 13px; color: rgba(255,255,255,0.45); }
.hstat-divider { width: 1px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

.scroll-cue {
  position: absolute; bottom: 110px; right: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 3px; color: var(--text-3);
}
.scroll-track {
  width: 1.5px; height: 48px; background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: 0; left: 0; right: 0;
  height: 50%; background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { top: 0; }
  100% { top: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(1.08); }
}

/* ── Clientes ───────────────────────────────────────────────────── */
#clientes {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clientes-inner { display: flex; flex-direction: column; gap: 16px; }
.clientes-label {
  text-align: center; font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3);
}
.logos-wrap { overflow: hidden; }
.logos-slide {
  display: flex; gap: 72px;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.logos-slide span {
  font-family: var(--serif); font-size: 15px;
  font-weight: 500; color: var(--text-3);
  white-space: nowrap; letter-spacing: 1.5px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section Base ───────────────────────────────────────────────── */
section { padding: 110px 0; }

/* ── Enfoque ────────────────────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.col-text .section-title { margin-bottom: 18px; }
.section-body {
  font-size: 16px; color: var(--text-2); line-height: 1.75;
  margin-bottom: 28px;
}
.check-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  font-size: 15px; color: var(--text-2); padding-left: 20px;
  position: relative;
}
.check-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: 13px;
}
.col-img { position: relative; }
.col-img img {
  border-radius: var(--radius); height: 520px; object-fit: cover;
}
.img-badge {
  position: absolute; bottom: 28px; left: -24px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
  backdrop-filter: blur(12px);
}
.badge-num {
  font-family: var(--serif); font-size: 28px;
  font-weight: 600; color: var(--gold); line-height: 1;
}
.badge-txt { font-size: 12px; color: var(--text-3); }

/* ── Pilares ────────────────────────────────────────────────────── */
#pilares { background: var(--bg-2); }
#pilares .eyebrow.center { margin-bottom: 14px; }
#pilares .section-title { margin-bottom: 52px; }
.pilares-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.pilar-card {
  padding: 44px 36px; background: var(--bg-2);
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.pilar-card:last-child { border-right: none; }
.pilar-card:hover { background: var(--bg-3); }
.pilar-card.featured { background: var(--bg-3); }
.pilar-num {
  font-family: var(--serif); font-size: 52px;
  font-weight: 400; color: var(--gold); opacity: 0.25;
  line-height: 1; margin-bottom: 24px;
  transition: opacity 0.3s;
}
.pilar-card:hover .pilar-num,
.pilar-card.featured .pilar-num { opacity: 0.7; }
.pilar-card h3 {
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; margin-bottom: 12px;
}
.pilar-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ── Método ─────────────────────────────────────────────────────── */
#metodo .section-title { margin-bottom: 64px; }
.metodo-steps { display: flex; flex-direction: column; gap: 96px; }
.metodo-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.metodo-step.reverse .metodo-img { order: 2; }
.metodo-step.reverse .metodo-text { order: 1; }
.metodo-img { position: relative; }
.metodo-img img {
  border-radius: var(--radius); height: 400px; object-fit: cover;
}
.metodo-num {
  position: absolute; top: -18px; right: -18px;
  font-family: var(--serif); font-size: 80px;
  font-weight: 700; color: var(--gold); opacity: 0.12;
  line-height: 1; pointer-events: none;
}
.metodo-text h3 {
  font-family: var(--serif); font-size: 26px;
  font-weight: 500; margin-bottom: 16px;
}
.metodo-text p { font-size: 16px; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.metodo-list { display: flex; flex-direction: column; gap: 8px; }
.metodo-list li {
  font-size: 14px; color: var(--text-2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.metodo-list li::before { content: '·'; color: var(--gold); font-size: 20px; line-height: 1; }

/* ── Servicios ──────────────────────────────────────────────────── */
#servicios { background: var(--bg-2); }
#servicios .section-title { margin-bottom: 52px; }
.servicios-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.servicio-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.servicio-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.servicio-card:hover { border-color: rgba(10,10,10,0.3); transform: translateY(-4px); }
.servicio-card:hover::after { transform: scaleX(1); }
.servicio-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 18px;
}
.servicio-tag span {
  font-family: var(--serif); font-weight: 600;
  color: var(--gold); font-size: 13px;
}
.servicio-card h3 {
  font-family: var(--serif); font-size: 24px;
  font-weight: 500; margin-bottom: 12px;
}
.servicio-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.servicio-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.servicio-platforms span {
  font-size: 12px; color: var(--text-3);
  border: 1px solid var(--border); padding: 4px 12px;
  border-radius: 100px;
}

/* ── Para Quién ─────────────────────────────────────────────────── */
.paraquien-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 52px;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.pq-card {
  padding: 40px 36px; background: var(--bg-2);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.pq-card:nth-child(even) { border-right: none; }
.pq-card:nth-child(n+3) { border-bottom: none; }
.pq-card:hover { background: var(--bg-3); }
.pq-icon {
  font-size: 20px; color: var(--gold); margin-bottom: 18px;
  opacity: 0.6;
}
.pq-card h3 {
  font-family: var(--serif); font-size: 20px;
  font-weight: 500; margin-bottom: 10px;
}
.pq-card p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* ── Testimonios ────────────────────────────────────────────────── */
#testimonios { background: var(--bg-2); }
#testimonios .section-title { margin-bottom: 52px; }
.testimonios-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: rgba(10,10,10,0.25); transform: translateY(-3px); }
.testi-quote {
  font-family: var(--serif); font-size: 64px;
  color: var(--gold); opacity: 0.3; line-height: 0.9;
}
.testi-card p {
  font-size: 15px; color: var(--text); line-height: 1.75;
  flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; border-top: 1px solid var(--border); padding-top: 20px;
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.av1 { background: #0f0f0f; color: #ffffff; }
.av2 { background: #2a2a2a; color: #ffffff; }
.av3 { background: #444444; color: #ffffff; }
.testi-author strong { display: block; font-size: 14px; font-weight: 500; }
.testi-author span { font-size: 12px; color: var(--text-3); }
.testi-metric {
  margin-left: auto; font-size: 13px; font-weight: 600;
  color: var(--gold); white-space: nowrap;
}

/* ── Precios ────────────────────────────────────────────────────── */
#precios .section-title { margin-bottom: 52px; }
.precios-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 28px;
}
.precio-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  position: relative; transition: transform 0.3s;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: space-between;
}
.precio-card:hover { transform: translateY(-4px); }
.precio-card.popular {
  border-color: var(--gold);
  background: rgba(10, 10, 10, 0.05);
  transform: translateY(-10px);
}
.precio-card.popular:hover { transform: translateY(-14px); }
.popular-tag {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.precio-plan {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3); font-weight: 500;
}
.precio-price {
  font-family: var(--serif); font-size: 44px;
  font-weight: 600; line-height: 1; color: var(--text);
}
.precio-price span { font-size: 16px; color: var(--text-2); font-family: var(--sans); }
.precio-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.precio-list { display: flex; flex-direction: column; gap: 0; flex: 1; }
.precio-list li {
  font-size: 14px; color: var(--text-2);
  padding: 9px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 8px; align-items: center;
}
.precio-list li::before { content: '✓'; color: var(--gold); font-size: 12px; flex-shrink: 0; }
.precios-note { text-align: center; font-size: 14px; color: var(--text-3); }
.precios-note a { color: var(--gold); transition: opacity 0.2s; }
.precios-note a:hover { opacity: 0.75; }

/* ── Plan Actions ───────────────────────────────────────────────── */
.plan-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: auto; padding-top: 8px;
}
.btn-signup {
  background: none; border: 1px solid var(--gold);
  color: var(--gold); font-size: 14px; font-weight: 600;
  font-family: var(--sans); padding: 12px;
  border-radius: 100px; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.3px;
}
.btn-signup:hover { background: var(--gold); color: var(--bg); }
.btn-signup.featured { background: var(--gold); color: #ffffff; }
.btn-signup.featured:hover { background: var(--gold-2); }
.btn-wa {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-2);
  font-size: 14px; font-weight: 500; padding: 12px;
  border-radius: 100px; transition: all 0.2s;
}
.btn-wa:hover { border-color: rgba(246,241,235,0.35); color: var(--text); }
.btn-mas-info {
  display: block; width: 100%; background: none; border: none;
  color: var(--text-3); font-size: 13px; font-family: var(--sans);
  padding: 10px 0 0; cursor: pointer;
  transition: color 0.2s; text-align: center;
  letter-spacing: 0.2px;
}
.btn-mas-info:hover { color: var(--gold); }

/* ── Sign Up Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 6, 3, 0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 44px;
  max-width: 460px; width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; color: var(--text-3);
  font-size: 20px; cursor: pointer; transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}
.modal-title {
  font-family: var(--serif); font-size: 30px;
  font-weight: 500; margin-bottom: 10px; line-height: 1.2;
}
.modal-title em { font-style: italic; color: var(--gold); }
.modal-sub { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 28px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
  width: 100%; background: #f5f5f5;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 18px; color: var(--text);
  font-family: var(--sans); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.modal-form input:focus { border-color: rgba(10,10,10,0.4); }
.modal-form input::placeholder { color: var(--text-3); }
.modal-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 8px; }
.modal-step.hidden { display: none; }
.success-icon {
  font-size: 40px; color: var(--gold);
  text-align: center; margin-bottom: 20px;
  animation: pulse 2s infinite;
}
@media (max-width: 500px) {
  .modal-box { padding: 36px 24px; }
  .plan-actions { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: left; color: var(--text);
  font-size: 16px; font-family: var(--sans); font-weight: 400;
  padding: 24px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q span {
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  transition: transform 0.3s; display: inline-block;
}
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 15px; color: var(--text-2); line-height: 1.75; }

/* ── Contacto ───────────────────────────────────────────────────── */
#contacto { position: relative; overflow: hidden; padding: 0; }
.contacto-bg {
  position: absolute; inset: 0;
}
.contacto-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contacto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,8,5,0.96) 45%, rgba(10,8,5,0.85) 100%);
}
.contacto-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 110px 0;
}
.contacto-text .section-title { margin-bottom: 28px; }
.contacto-trust { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contacto-trust span { font-size: 14px; color: var(--text-2); }
.contacto-info { display: flex; flex-direction: column; gap: 12px; }
.contacto-info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--text-2);
  transition: color 0.2s;
}
.contacto-info-item:hover { color: var(--gold); }
.ci-icon { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.contacto-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contacto-form input,
.contacto-form select,
.contacto-form textarea {
  width: 100%; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 10px;
  padding: 14px 18px; color: #ffffff;
  font-family: var(--sans); font-size: 15px;
  transition: border-color 0.2s; outline: none;
  backdrop-filter: blur(8px);
}
.contacto-form select option { background: #1a1a1a; color: #ffffff; }
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus { border-color: rgba(255,255,255,0.6); }
.contacto-form input::placeholder,
.contacto-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-note { font-size: 12px; color: var(--text-3); text-align: center; }
.form-success {
  text-align: center; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success p { font-size: 16px; color: var(--text-2); }
.form-error { font-size: 13px; color: #e07070; margin-bottom: 8px; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: #f3f3f3; border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top { display: flex; gap: 80px; margin-bottom: 52px; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { width: 52px; height: 52px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.fcol { display: flex; flex-direction: column; gap: 12px; }
.fcol h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); }
.fcol a { font-size: 14px; color: var(--text-2); transition: color 0.2s; }
.fcol a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .metodo-step, .metodo-step.reverse { grid-template-columns: 1fr; gap: 32px; }
  .metodo-step.reverse .metodo-img { order: 0; }
  .metodo-step.reverse .metodo-text { order: 0; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .testi-card.large { grid-column: span 2; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .col-img { display: none; }
  .servicios-grid { grid-template-columns: 1fr; }
  .precios-grid { grid-template-columns: 1fr; }
  .precio-card.popular { transform: none; }
  .pilares-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .pilar-card { border-right: none; border: 1px solid var(--border); border-radius: var(--radius); }
  .paraquien-grid { grid-template-columns: 1fr; }
  .pq-card:nth-child(even) { border-right: 1px solid var(--border); }
  .testimonios-grid { grid-template-columns: 1fr; }
  .testi-card.large { grid-column: span 1; }
  .contacto-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { gap: 40px; }
  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-stats { position: static; }
  #hero { padding-bottom: 0; }
  .scroll-cue { display: none; }
}
@media (max-width: 600px) {
  section { padding: 80px 0; }
  #hero { padding: 110px 20px 0; }
  .hstat { padding: 14px 12px; }
  .hstat-num { font-size: 22px; }
  .hstat-plus { font-size: 16px; }
  .hstat-label { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  #cursor, #cursorRing { display: none; }
  body { cursor: auto; }
}

/* ── Dark Section Overrides ──────────────────────────────────────────
   Hero y Contacto tienen fondo oscuro (imagen + overlay).
   Todo el texto en esas zonas debe ser blanco.
─────────────────────────────────────────────────────────────────── */

/* Nav transparente sobre el hero oscuro */
#nav:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }
#nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.65); }
#nav:not(.scrolled) .nav-links a:hover { color: #ffffff; }
#nav:not(.scrolled) .menu-toggle span { background: #ffffff; }
#nav:not(.scrolled) .btn-nav {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
}

/* Hero — texto blanco sobre overlay oscuro */
.hero-eyebrow .gold-line { background: rgba(255,255,255,0.4); }
.hero-title { color: #ffffff; }
.hero-title em { color: rgba(255,255,255,0.72); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.62); }
.scroll-cue { color: rgba(255,255,255,0.38); }
.scroll-track { background: rgba(255,255,255,0.18); }

/* Contacto — texto blanco sobre overlay oscuro */
.contacto-text .eyebrow { color: rgba(255,255,255,0.42); }
.contacto-text .gold-line { background: rgba(255,255,255,0.45); }
.contacto-text .section-title { color: #ffffff; }
.contacto-text .section-title em { color: rgba(255,255,255,0.68); }
.contacto-trust span { color: rgba(255,255,255,0.65); }
.contacto-info-item { color: rgba(255,255,255,0.6); }
.contacto-info-item:hover { color: #ffffff; }
#contactSuccess p { color: rgba(255,255,255,0.7); }
#contactSuccess .success-icon { color: #ffffff; }
.contacto-right .form-note { color: rgba(255,255,255,0.38); }
.contacto-form .btn-gold { background: #ffffff; color: #0f0f0f; }
.contacto-form .btn-gold:hover { background: rgba(255,255,255,0.88); color: #0f0f0f; }
