:root {
  --ivory: #FFF5E1;
  --indigo: #6A5ACD;
  --indigo-light: #7E78DC;
  --indigo-dark: #5E4DB5;
  --green: #BCF660;
  --tuscan: #F6CB60;
  --black: #1F1F1F;
  --black-warm: #1a1a18;
  --gray-900: #2d2d2d;
  --gray-700: #555;
  --gray-500: #595959;
  --gray-300: #767676;
  --gray-100: #e8e8e8;
  --light-purple: #EEEAFF;
  --contact-bg: #F5F0FF;
  --footer-bg: #F0EDE5;
  --lavender: #E8E3F3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 100%; }
body {
  font-family: 'Roboto', sans-serif;
  background: var(--ivory);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}
/* Paper grain texture */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ═══ SKIP NAV ═══ */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  background: var(--indigo); color: var(--ivory);
  padding: 12px 24px; z-index: 9999; font-family: 'Lexend', sans-serif;
  font-size: 0.85rem; text-decoration: none; border-radius: 0 0 8px 8px;
  transition: top 0.3s;
}
.skip-nav:focus { top: 0; }

/* ═══ FOCUS ═══ */
:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}
button:focus-visible, a:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
::selection { background: var(--indigo); color: var(--ivory); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 2px; }

/* ═══ MEMPHIS DECORATIONS ═══ */

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: 76px; display: flex; justify-content: space-between; align-items: center;
  padding: 0 28px;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  background: rgba(255,245,225,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(31,31,31,0.06);
}
nav.scrolled {
  box-shadow: 0 1px 0 rgba(106,90,205,0.06);
}
.nav-logo-img { height: 40px; display: block; }
.nav-right { display: none; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Lexend', sans-serif; font-size: 0.72rem; font-weight: 500;
  color: var(--black); text-decoration: none; letter-spacing: 0.12em;
  text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--indigo); }
.nav-social { display: flex; gap: 12px; align-items: center; }
.nav-social a { color: var(--black); text-decoration: none; transition: color 0.3s; display: flex; }
.nav-social a:hover { color: var(--indigo); }
.nav-social svg { width: 18px; height: 18px; }
.nav-cta-btn {
  font-family: 'Lexend', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--indigo); color: var(--ivory); text-decoration: none;
  padding: 11px 28px; transition: all 0.3s; display: inline-block;
}
.nav-cta-btn:hover { background: var(--tuscan); color: var(--black); }
.hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 200; background: none; border: none; padding: 0; }
.hamburger span { width: 28px; height: 2px; background: var(--black); transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
  background: var(--ivory); z-index: 150; display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 32px; transition: right 0.5s cubic-bezier(0.16,1,0.3,1);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: 'Lexend', sans-serif; font-size: 1.4rem; font-weight: 600;
  color: var(--black); text-decoration: none; letter-spacing: -0.02em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--indigo); }
.mobile-menu .mob-cta {
  margin-top: 16px; background: var(--indigo); color: var(--ivory);
  padding: 16px 40px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ═══ CONTAINER ═══ */
.container { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.section-tag {
  font-family: 'Lexend', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--indigo);
  margin-bottom: 20px; display: flex; align-items: center; gap: 16px;
}
.section-tag::before { content: ''; width: 32px; height: 2px; background: var(--indigo); }
.section-tag.centered { justify-content: center; }
.section-tag.centered::after { content: ''; width: 32px; height: 2px; background: var(--indigo); }
.section-tag.green { color: var(--green); }
.section-tag.green::before { background: var(--green); }
h2 {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: clamp(2rem,3.5vw,2.625rem); color: var(--black);
  line-height: 1.1; letter-spacing: -0.03em;
}
/* ═══ HERO ═══ */
#hero {
  height: auto; display: grid; grid-template-columns: 1fr;
  position: relative; overflow: hidden; margin-top: 76px;
}
.hero-left {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 40px 20px; position: relative; z-index: 2;
}

/* ═══ MANIFESTO (above indigo, ivory bg) ═══ */
.hero-manifesto {
  padding: 20px 20px 16px;
  display: flex; justify-content: flex-end;
  background: var(--ivory);
}
.manifesto-typo {
  display: flex; flex-direction: column; gap: 2px;
}
.manifesto-line-1, .manifesto-line-2 {
  display: flex; align-items: stretch; gap: 0; flex-wrap: wrap;
}
.manifesto-pensar {
  font-family: 'Lexend Deca', sans-serif; font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 0.9;
  color: var(--indigo); letter-spacing: -0.08em;
  background: var(--lavender); padding: 6px 10px 8px 6px;
  display: flex; align-items: center;
}
.manifesto-antes {
  font-family: 'Lexend Deca', sans-serif; font-weight: 400;
  font-size: clamp(0.7rem, 1.8vw, 0.95rem); line-height: 0.85;
  color: var(--gray-500); letter-spacing: -0.05em;
  display: flex; align-items: center; justify-content: flex-start;
  text-align: left; padding: 0 0 0 6px;
}
.manifesto-sigue {
  font-family: 'Lexend Deca', sans-serif; font-weight: 400;
  font-size: clamp(0.55rem, 1.4vw, 0.72rem); line-height: 0.9;
  color: var(--black); letter-spacing: -0.04em;
  display: flex; align-items: center; justify-content: flex-end;
  text-align: right; padding: 0 6px 0 0;
}
.manifesto-acto {
  font-family: 'Lexend Deca', sans-serif; font-weight: 400;
  font-size: clamp(1.1rem, 3.5vw, 1.7rem); line-height: 0.95;
  color: var(--green); letter-spacing: -0.08em;
  background: var(--indigo); padding: 6px 10px 8px 8px;
  display: flex; align-items: center;
}
.hero-words {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 6px 14px; align-items: center;
}
.cw {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.04em; color: rgba(255,245,225,0.15);
  transition: color 0.5s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  line-height: 1; position: relative; opacity: 0.5; transform: translateY(4px);
  display: flex; align-items: center; gap: 6px;
}
.cw::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  opacity: 0; transition: opacity 0.4s ease;
}
.cw.on { color: var(--ivory); opacity: 1; transform: translateY(0); }
.cw.on::after { opacity: 1; }
.hero-claim {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px;
}
.hero-claim-main {
  font-family: 'Lexend Deca', sans-serif; font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 3.2rem); line-height: 1;
  color: var(--indigo); letter-spacing: -0.06em;
}
.dot-tuscan { color: var(--tuscan); }
.hero-claim-sub {
  font-family: 'Lexend', sans-serif; font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.2rem); line-height: 1.3;
  color: var(--black); letter-spacing: -0.02em;
}
.hero-desc {
  font-family: 'Lexend', sans-serif;
  font-size: 0.88rem; font-weight: 300; color: var(--gray-700);
  margin: 0 0 24px; line-height: 1.7; text-align: left;
}
/* ═══ HERO ¿TE SUENA? ═══ */
.hero-reconoces {
  margin: 0 0 24px; width: 100%;
}
.hero-reconoces-tag {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--indigo);
  margin-bottom: 10px;
}
.hero-reconoces-items {
  display: flex; flex-direction: column; gap: 8px;
}
.hero-reconoces-item {
  display: flex; align-items: flex-start; gap: 10px;
}
.hero-reconoces-item .reconoces-num {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.7rem;
  color: var(--indigo); opacity: 0.5; flex-shrink: 0; min-width: 18px;
  line-height: 1.5;
}
.hero-reconoces-item p {
  font-family: 'Lexend', sans-serif; font-weight: 400; font-size: 0.82rem;
  color: var(--gray-700); line-height: 1.5; margin: 0;
}
.hero-cta-group {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  gap: 16px; width: 100%;
}
.hero-tagline, .hero-tagline-link {
  font-family: 'Lexend', sans-serif; font-size: 0.78rem; font-weight: 500;
  color: var(--gray-700); margin-top: 16px; letter-spacing: 0.08em;
}
.hero-tagline-link {
  text-decoration: none; display: inline-block;
  transition: color 0.3s;
}
.hero-tagline-link:hover { color: var(--indigo); }
.hero-right-wrap {
  display: flex; flex-direction: column;
}
.hero-right {
  background: var(--indigo); position: relative;
  display: flex; align-items: center; justify-content: flex-start; overflow: hidden;
  padding: 20px; flex: 1;
}
.hero-right-content {
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; z-index: 2; width: 100%; gap: 16px;
}
.hero-right .editorial-number {
  font-family: 'Lexend', sans-serif; font-weight: 900; font-size: 5rem;
  line-height: 0.85; color: rgba(255,255,255,0.15); position: absolute;
  top: auto; bottom: -8px; right: -4px; letter-spacing: -0.03em; opacity: 0.4;
}
.hero-right .editorial-number .dot-yellow { color: #F9BD5A; opacity: 0.5; }
.hero-quote-separator {
  width: 32px; height: 1px; background: rgba(255,245,225,0.25); margin: 8px 0;
}
.hero-right .hero-quote {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.88rem;
  line-height: 1.4; color: var(--tuscan); letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.btn-primary {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase; background: var(--tuscan);
  color: var(--black); padding: 14px 28px; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); display: inline-block;
  text-align: center; width: 100%;
}
.btn-primary:hover { background: var(--green); transform: translateY(-2px); }
.btn-ghost {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 0.8rem;
  color: var(--gray-700); text-decoration: none; display: flex;
  align-items: center; gap: 8px; transition: color 0.3s;
}
.btn-ghost:hover { color: var(--indigo); }
.btn-ghost-subtle { font-size: 0.72rem; color: var(--gray-300); }
.btn-ghost-subtle:hover { color: var(--gray-700); }
.btn-ghost .arr { transition: transform 0.3s; }
.btn-ghost:hover .arr { transform: translateX(4px); }

/* ═══ QUE ES ═══ */
#que-es { padding: 40px 0; position: relative; overflow: hidden; }
.quees-header { margin-bottom: 60px; display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.quees-header--compact { margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.quees-header-left { }
.quees-header-right { display: flex; gap: 16px; padding-top: 10px; }
.quees-accent-bar { width: 3px; min-height: 80px; background: var(--indigo); border-radius: 2px; flex-shrink: 0; }
.quees-statement {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 1.0625rem;
  color: var(--gray-700); line-height: 1.75;
}
.quees-statement em { font-style: normal; color: var(--indigo); font-weight: 600; font-family: 'Lexend', sans-serif; }
.quees-columns { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
.quees-col { padding: 40px 48px; border-radius: 12px; }
.quees-col-si { background: #F9BD5A; border: 1px solid rgba(246,203,96,0.2); }
.quees-col h3 {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.25rem;
  margin-bottom: 24px; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 16px;
}
.quees-col-si h3 { color: var(--black); }
.quees-col h3 .col-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.quees-col-si h3 .col-icon { background: var(--indigo); color: var(--ivory); }
.quees-col-sep { height: 1px; margin-bottom: 24px; }
.quees-col-si .quees-col-sep { background: rgba(106,90,205,0.1); }
.quees-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.quees-list li {
  font-family: 'Roboto', sans-serif; font-size: 0.97rem; font-weight: 400;
  padding-left: 28px; position: relative; line-height: 1.7;
}
.quees-col-si .quees-list li { color: var(--gray-700); }
.quees-col-si .quees-list li::before { content: '→'; position: absolute; left: 0; color: var(--indigo); font-weight: 500; }
.quees-list--wide { display: flex; flex-direction: column; gap: 12px; }

/* ═══ POSICIONAMIENTO ═══ */
#posicionamiento { padding: 8px 0; position: relative; overflow: hidden; }
.posicionamiento-layout { display: flex; flex-direction: column; gap: 16px; }
.posicionamiento-text { }
.posicionamiento-text h2 {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.6rem;
  color: var(--black); line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 16px;
}
.posicionamiento-text p {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 1rem;
  color: var(--gray-700); line-height: 1.75; margin-bottom: 12px;
}
.posicionamiento-right { }
.posicionamiento-card {
  background: rgba(255,255,255,0.5); border: 1px solid var(--indigo);
  padding: 20px; border-radius: 12px;
}
.posicionamiento-card-title {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.02em; color: var(--black); margin-bottom: 16px; text-align: center;
}
.posicionamiento-card .quees-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.posicionamiento-card .quees-list li {
  font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 400;
  padding-left: 24px; position: relative; line-height: 1.65; color: var(--gray-700);
}
.posicionamiento-card .quees-list li::before { content: '→'; position: absolute; left: 0; color: var(--indigo); font-weight: 500; }

/* ═══ METODO ═══ */
#metodo { padding: 24px 0 0; background: var(--ivory); position: relative; overflow: hidden; }
.metodo-header { margin-bottom: 8px; }
.metodo-claim {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--black); text-align: center; letter-spacing: -0.02em;
  margin: 20px 0 16px;
}
.metodo-subtitle {
  font-family: 'Lexend', sans-serif; font-weight: 300; font-size: 1.05rem;
  color: var(--gray-700); line-height: 1.6; letter-spacing: -0.01em;
  margin-bottom: 24px; text-align: center;
}

/* Infographic — always horizontal, on a card */
.metodo-infografia {
  display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 20px;
  position: relative; padding: 16px 24px 12px; max-width: 340px; margin: 0 auto 16px;
  background: rgba(255,255,255,0.5); border-radius: 16px;
  box-shadow: 0 4px 20px rgba(106,90,205,0.08);
  border: 1px solid var(--indigo);
}
.metodo-info-step { display: flex; flex-direction: column; align-items: center; gap: 5px; position: relative; z-index: 2; }
.info-circle {
  width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.info-circle svg { width: 28px; height: 28px; fill: var(--ivory); }
.info-icon-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.info-circle.indigo { background: transparent; }
.info-circle.green { background: transparent; }
.info-circle.yellow { background: transparent; }
.info-label { font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.68rem; color: var(--black); letter-spacing: -0.02em; text-align: center; }
.metodo-infografia::before {
  content: ''; position: absolute; top: 41px; left: 16%; right: 16%;
  height: 1px; background: linear-gradient(90deg, var(--indigo), rgba(106,90,205,0.2), var(--indigo));
  z-index: 1; display: block;
}

/* Process Steps — floating cards */
.metodo-process { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 0; }
.metodo-step {
  padding: 24px; background: #fff; border-radius: 12px;
  border: 1px solid rgba(106,90,205,0.1);
  box-shadow: 0 2px 12px rgba(106,90,205,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.metodo-step:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(106,90,205,0.1); }
.metodo-step.dim { opacity: 0.3; transform: scale(0.97); }
.metodo-step.highlight { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(106,90,205,0.15); }
.metodo-info-step { cursor: pointer; }
.metodo-info-step:hover .info-circle {
  transform: scale(1.15) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(106,90,205,0.18);
}
.ms-num {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.8rem;
  color: var(--black); margin-bottom: 10px; display: block; line-height: 1;
  opacity: 0.15;
  -webkit-text-stroke: 1.5px var(--indigo);
  text-stroke: 1.5px var(--indigo);
  paint-order: stroke fill;
}
.metodo-step h4 { font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.metodo-step p { font-family: 'Roboto', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--gray-700); line-height: 1.6; }

/* Metodo CTA */
.metodo-cta-wrap {
  text-align: center; margin-top: 20px; margin-bottom: 0;
}
.metodo-cta-text {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.3rem;
  color: var(--indigo); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.metodo-cta-link {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 16px 36px; border-radius: 8px; display: inline-block;
  background: var(--tuscan); color: var(--black);
  box-shadow: 0 4px 16px rgba(106,90,205,0.15);
  transition: all 0.3s ease;
}
.metodo-cta-link:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(106,90,205,0.2); }

/* Step color-coding */
.step-pensar { border-top: 3px solid var(--indigo); }
.step-pensar .ms-num { -webkit-text-stroke-color: var(--indigo); }
.step-ordenar { border-top: 3px solid var(--green); }
.step-ordenar .ms-num { -webkit-text-stroke-color: var(--green); }
.step-activar { border-top: 3px solid var(--tuscan); }
.step-activar .ms-num { -webkit-text-stroke-color: var(--tuscan); }

/* ═══ SERVICIOS / PACKS ═══ */
#servicios { padding: 24px 0; position: relative; overflow: hidden; }
.servicios-header { margin-bottom: 14px; }
.servicios-subtitle {
  font-family: 'Lexend', sans-serif; font-weight: 300; font-size: 1.05rem;
  color: var(--gray-700); line-height: 1.6; margin-top: 10px;
}
/* Pack Tabs */
.pack-tabs {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.pack-tab {
  flex: 1 1 0; min-width: 0; padding: 14px 6px; border: 2px solid rgba(106,90,205,0.15);
  border-radius: 10px; background: #fff; cursor: pointer;
  transition: all 0.3s ease; text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  justify-content: center;
}
.pack-tab:hover { border-color: var(--indigo); }
.pack-tab.active {
  background: var(--indigo); border-color: var(--indigo); color: var(--ivory);
}
.pack-tab-name {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: -0.01em; line-height: 1.3;
}
.pack-tab.active .pack-tab-name { color: var(--ivory); }
.pack-tab-price {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 0.95rem;
  color: var(--indigo); letter-spacing: -0.02em;
}
.pack-tab.active .pack-tab-price { color: var(--green); }

/* Pack Carousel (mobile: one at a time) */
.packs-carousel { margin-bottom: 18px; }
.packs-carousel .pack-card[hidden] { display: none; }
.pack-card {
  padding: 18px 18px; border: 2px solid rgba(106,90,205,0.15); border-radius: 12px;
  background: #fff; display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(106,90,205,0.06);
  animation: packFadeIn 0.3s ease;
}
@keyframes packFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pack-badge {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--indigo);
  margin-bottom: 4px; display: inline-block;
}
.pack-name {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.02em; margin-bottom: 2px;
}
.pack-price {
  font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.6rem;
  color: var(--indigo); letter-spacing: -0.03em; margin-bottom: 2px;
}
.pack-meta {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.78rem;
  color: var(--gray-500); margin-bottom: 10px;
}
.pack-desc {
  font-family: 'Roboto', sans-serif; font-weight: 400; font-size: 0.85rem;
  color: var(--gray-700); line-height: 1.6; margin-bottom: 10px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(106,90,205,0.08);
}
.pack-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; flex-grow: 1; }
.pack-list li {
  font-family: 'Roboto', sans-serif; font-size: 0.82rem; font-weight: 300;
  color: var(--gray-700); padding-left: 18px; position: relative; line-height: 1.5;
}
.pack-list li::before { content: '·'; position: absolute; left: 0; color: var(--indigo); font-weight: 700; font-size: 1.2rem; }

/* Pause CTA */
.pause-cta-wrap {
  margin-bottom: 0;
}
.pause-cta-badge {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.pause-cta-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--tuscan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pause-cta-icon svg {
  width: 15px; height: 15px; color: var(--indigo);
}
.pause-cta-label {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 1.1rem;
  color: var(--black); letter-spacing: -0.01em;
}
.pause-cta-label strong {
  color: var(--indigo);
}
.pause-cta-text {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.95rem;
  color: var(--gray-700); line-height: 1.6; margin: 0;
}
.pause-cta-link {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--indigo); text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.pause-cta-link:hover { color: var(--tuscan); }

/* CTA único para los 3 packs */
.packs-cta {
  display: block; text-align: center; text-decoration: none;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 18px 36px; margin-bottom: 24px;
  background: var(--indigo); color: var(--ivory); border-radius: 8px;
  box-shadow: 0 6px 24px rgba(106,90,205,0.25);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.packs-cta:hover { background: var(--tuscan); color: var(--black); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(106,90,205,0.3); }

/* Activables */
.activables-wrap {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(106,90,205,0.1);
  text-align: center;
}
.activables-label {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.85rem;
  color: var(--gray-500); margin-bottom: 14px; letter-spacing: 0.02em;
}
.activables-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  max-width: 820px; margin: 0 auto;
}
.activable-pill {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 0.78rem;
  color: var(--indigo); background: var(--light-purple);
  padding: 8px 16px; border-radius: 20px; letter-spacing: 0.01em;
}

/* Nave Nexo block */
.nave-nexo-block {
  background: linear-gradient(rgba(20,20,20,0.65), rgba(20,20,20,0.70)), url('nave-nexo-studio.jpeg') center/cover no-repeat;
  border-radius: 12px; padding: 32px 28px;
  display: flex; flex-direction: column; text-align: center; align-items: center; gap: 20px;
  position: relative;
}
.nave-nexo-icon {
  width: 44px; height: 44px; color: var(--green); flex-shrink: 0;
  opacity: 0.85; transition: opacity 0.3s ease;
}
.nave-nexo-icon svg { width: 100%; height: 100%; }
.nave-nexo-block:hover .nave-nexo-icon { opacity: 1; }
.nave-nexo-text {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.92rem;
  color: rgba(255,255,255,0.6); line-height: 1.7;
}
.nave-nexo-text strong {
  font-family: 'Lexend', sans-serif; font-weight: 600; color: #fff;
  font-size: 1rem; display: block; margin-bottom: 6px; line-height: 1.5;
}
.nave-nexo-precio {
  display: block; margin-top: 14px;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.8rem;
  color: var(--green); letter-spacing: 0.02em;
}
.nave-nexo-nota {
  display: block; margin-top: 3px;
  font-size: 0.7rem; color: rgba(255,255,255,0.3);
}
.nave-nexo-cta {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--green); text-decoration: none;
  padding: 12px 28px; white-space: nowrap; flex-shrink: 0; border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  display: inline-flex; align-items: center; gap: 8px;
}
.nave-nexo-cta-icon { width: 15px; height: 15px; stroke-width: 2; transition: transform 0.3s ease; }
.nave-nexo-cta:hover { background: #fff; color: var(--indigo); transform: translateY(-2px); }
.nave-nexo-cta:hover .nave-nexo-cta-icon { transform: translateY(-1px); }

/* ═══ ECOSISTEMA NEXO ═══ */
#ecosistema { padding: 48px 0 60px; }
#ecosistema h2 { margin-bottom: 20px; font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* ═══ PARA QUIEN ═══ */
#para-quien { padding: 40px 0; position: relative; overflow: hidden; }
.para-quien-layout { text-align: center; max-width: 960px; margin: 0 auto; }
.para-quien-layout .section-tag { justify-content: center; }
.para-quien-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; margin-bottom: 40px; }
.pq-card {
  padding: 40px 32px; border: 2px solid var(--indigo); text-align: left;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1); background: transparent;
  display: flex; flex-direction: column;
}
.pq-card:hover { background: var(--tuscan); border-color: var(--tuscan); }
.pq-card-letter {
  font-family: 'Permanent Marker', cursive; font-size: 0.75rem; color: var(--indigo);
  margin-bottom: 16px; transition: color 0.4s;
}
.pq-card h3 {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.05rem;
  color: var(--black); margin-bottom: 12px; letter-spacing: -0.02em; line-height: 1.3;
}
.pq-card p {
  font-family: 'Roboto', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: var(--gray-700); line-height: 1.7; flex-grow: 1;
}
.para-quien-cierre {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 1rem;
  color: var(--gray-700); line-height: 1.6; margin-bottom: 24px;
}

/* ═══ NOSOTRAS ═══ */
#nosotras { padding: 40px 0 8px; position: relative; overflow: hidden; }
#nosotras h2 { font-size: clamp(1.6rem, 3vw, 2.625rem); }
.nosotras-intro {
  display: flex; flex-direction: column; gap: 24px; margin-top: 32px;
}
.nosotras-intro-text p {
  font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--gray-700); line-height: 1.55;
}
.nosotras-intro-text p strong { font-family: 'Lexend', sans-serif; font-weight: 700; color: var(--black); }
.nosotras-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 500px;
}
.nosotras-photo-item { text-align: center; }
.nosotras-photo-item picture {
  display: block; overflow: hidden; border-radius: 8px;
  max-height: 280px;
}
.nosotras-photo-item picture img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 8px;
}
.nosotras-photo-name {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.8rem;
  letter-spacing: -0.01em; display: block; margin-top: 10px; color: var(--black);
}
.nosotras-photo-name .linkedin-icon {
  display: inline-flex; align-items: center; vertical-align: middle;
  margin-left: 4px; color: var(--gray-300); transition: color 0.3s;
}
.nosotras-photo-name .linkedin-icon:hover { color: var(--indigo); }
.nosotras-photo-name .linkedin-icon svg { width: 15px; height: 15px; }
.nosotras-photo-role {
  display: block; margin-top: 4px;
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.75rem;
  color: var(--gray-700); line-height: 1.45;
}
.nosotras-bios {
  margin-top: 28px;
}
.nosotras-bios p {
  font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--gray-700); line-height: 1.8; margin-bottom: 14px;
}
.nosotras-bios p strong { font-family: 'Lexend', sans-serif; font-weight: 700; color: var(--black); }
.nosotras-historia {
  margin-top: 32px;
}
.nosotras-historia p {
  font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 300;
  color: var(--gray-700); line-height: 1.55; margin-bottom: 16px;
}
.nosotras-historia p strong { font-weight: 600; color: var(--black); }
/* Nosotras quote */
.nosotras-quote {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--indigo); line-height: 1.5;
  border-left: 3px solid var(--indigo); padding: 8px 0 8px 16px;
  margin: 16px 0; font-style: italic;
}
/* Nosotras highlight phrase */
.nosotras-highlight {
  font-family: 'Lexend', sans-serif !important; font-weight: 600 !important;
  font-size: 1.05rem !important; color: var(--indigo) !important;
  margin-top: 16px !important; line-height: 1.5 !important;
  border-left: 3px solid var(--tuscan); padding-left: 16px;
}
.nosotras-intro-text p {
  margin-bottom: 12px;
}

/* ═══ HOME: MÉTODO RESUMIDO ═══ */
#metodo-home {
  padding: 32px 0 28px; background: var(--light-purple); position: relative;
}
.home-section-title {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--black);
  text-align: center; margin-bottom: 20px; letter-spacing: -0.03em;
}
.metodo-home-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  max-width: 680px; margin: 0 auto 16px;
  position: relative;
}
.metodo-home-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px; padding: 10px 16px;
  cursor: default;
}
.metodo-home-step:hover .info-circle {
  transform: scale(1.12) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(106,90,205,0.15);
}
.metodo-home-step:hover h3 { color: var(--indigo-dark); }
.metodo-home-step .info-circle {
  width: 44px; height: 44px; margin-bottom: 2px;
  background: #fff; border: 1.5px solid rgba(106,90,205,0.15);
  box-shadow: 0 2px 8px rgba(106,90,205,0.08);
}
.metodo-home-step h3 {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: 0.88rem; color: var(--indigo); letter-spacing: -0.02em;
}
.metodo-home-step p {
  font-family: 'Lexend', sans-serif; font-weight: 300;
  font-size: 0.78rem; color: var(--gray-700); line-height: 1.5;
  max-width: 220px;
}
.home-section-cta {
  text-align: center; margin-top: 4px;
}
.home-section-cta .btn-ghost {
  display: inline-flex; justify-content: center;
}
.packs-cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.packs-cta-group .btn-ghost { display: inline-flex; }

/* ═══ HOME: PACKS RESUMIDO ═══ */
#packs-home {
  padding: 28px 0 24px; background: var(--ivory);
  border-top: 1px solid rgba(106,90,205,0.08);
}
.packs-home-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  max-width: 720px; margin: 0 auto 16px;
  align-items: stretch;
}
.pack-home-card {
  background: #fff; border: 1.5px solid rgba(106,90,205,0.1);
  border-radius: 10px; padding: 16px 20px; display: flex;
  flex-direction: column; gap: 4px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pack-home-card:hover {
  border-color: var(--indigo);
  box-shadow: 0 6px 20px rgba(106,90,205,0.1);
  transform: translateY(-3px);
}
.pack-home-card .pack-price {
  white-space: nowrap; font-size: clamp(1rem, 2vw, 1.2rem);
}
.pack-home-card .pack-meta {
  white-space: nowrap; font-size: 0.68rem;
}
.pack-home-featured {
  border-color: var(--indigo); border-width: 1.5px;
  background: linear-gradient(135deg, #fff 0%, var(--light-purple) 100%);
}

/* ═══ HOME: SOCIAL PROOF ═══ */
#proof-home {
  padding: 40px 0; background: var(--footer-bg);
}
.proof-home-layout {
  display: flex; flex-direction: column; gap: 28px;
  align-items: center; text-align: center;
}
.proof-home-stats {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
}
.proof-stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.proof-stat-num {
  font-family: 'Lexend', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--indigo);
  letter-spacing: -0.04em; line-height: 1;
}
.proof-stat-label {
  font-family: 'Lexend', sans-serif; font-weight: 400;
  font-size: 0.75rem; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.proof-stars {
  color: var(--tuscan); font-size: 0.85em; letter-spacing: 0.02em;
}
.proof-review {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 400px; text-align: center;
}
.proof-quote {
  font-family: 'Lexend', sans-serif; font-weight: 300;
  font-size: 0.88rem; color: var(--gray-700); line-height: 1.6;
  font-style: italic; margin: 0;
}
.proof-author {
  display: flex; gap: 8px; align-items: center; justify-content: center;
}
.proof-author-name {
  font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: 0.75rem; color: var(--black);
}
.proof-author-via {
  font-family: 'Lexend', sans-serif; font-weight: 400;
  font-size: 0.68rem; color: var(--gray-500);
}
.proof-footer {
  text-align: center; margin-top: 12px;
}
.proof-home-text p {
  font-family: 'Lexend', sans-serif; font-weight: 300;
  font-size: 0.92rem; color: var(--gray-700); line-height: 1.7;
  max-width: 520px; margin: 0 auto 16px;
}

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: var(--indigo); padding: 48px 0; position: relative; overflow: hidden;
}
.cta-banner-content {
  display: flex; flex-direction: column; text-align: center; align-items: center; gap: 24px;
}
.cta-banner-text {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 1.25rem;
  color: var(--ivory); line-height: 1.4;
}
.cta-banner-text span {
  display: block; font-weight: 300; font-size: 0.9rem;
  color: rgba(255,245,225,0.65); margin-top: 6px;
}
.cta-banner-btn {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  background: var(--tuscan); padding: 16px 44px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap; flex-shrink: 0; width: 100%; text-align: center;
}
.cta-banner-btn:hover {
  background: var(--green); transform: translateY(-2px);
}
.cta-banner-btns {
  display: flex; flex-direction: column; width: 100%; gap: 12px; flex-shrink: 0;
}
.cta-banner-btn.cta-outline {
  background: transparent; color: var(--ivory); border: 2px solid var(--ivory);
}
.cta-banner-btn.cta-outline:hover {
  background: var(--ivory); color: var(--indigo);
}
.cta-banner-btn-ghost {
  background: transparent; color: var(--ivory);
  border: 1.5px solid rgba(255,245,225,0.5);
}
.cta-banner-btn-ghost:hover {
  background: rgba(255,245,225,0.12); border-color: var(--ivory);
  transform: translateY(-2px);
}

/* ═══ CONTACTO ═══ */
#contacto { background: var(--ivory); padding: 40px 0; position: relative; overflow: hidden; }
/* Mobile: intro → form → faq (natural DOM order) */
.contacto-layout { display: flex; flex-direction: column; gap: 24px; align-items: stretch; }
.contacto-intro p { font-family: 'Roboto', sans-serif; font-size: 1rem; font-weight: 300; color: var(--gray-700); line-height: 1.8; }
.contacto-faq { padding-top: 32px; border-top: 1px solid rgba(106,90,205,0.12); }
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: opacity 0.3s; }
.contact-info-item:hover { opacity: 0.7; }
.contact-info-item svg { width: 18px; height: 18px; color: var(--indigo); flex-shrink: 0; }
.contact-info-item span {
  font-family: 'Roboto', sans-serif; font-size: 0.94rem; font-weight: 400; color: var(--gray-700);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; width: 100%; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-700);
}
.form-group input, .form-group textarea, .form-group select {
  font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 300;
  padding: 14px 0; background: transparent; border: none;
  border-bottom: 1px solid rgba(106,90,205,0.15); color: var(--black);
  transition: border-color 0.3s; outline: none; border-radius: 0; -webkit-appearance: none;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--indigo); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--ivory); color: var(--black); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; background: var(--indigo);
  color: var(--ivory); border: 2px solid var(--indigo); padding: 14px 32px; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); margin-top: 12px;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
}
.form-submit:hover { background: var(--tuscan); color: var(--black); border-color: var(--tuscan); transform: translateY(-2px); }
.form-agendar {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; background: var(--tuscan);
  color: var(--black); text-decoration: none; padding: 14px 32px;
  display: inline-block; margin-top: 28px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  width: auto; text-align: center;
}
.form-agendar:hover { background: var(--green); transform: translateY(-2px); }

/* Contact info inline */
.contact-info-inline {
  display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px 20px;
  margin-top: 12px; margin-bottom: 8px;
}
.contact-info-inline .contact-info-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--indigo); text-decoration: none;
  transition: color 0.3s;
}
.contact-info-inline .contact-info-item svg { width: 16px; height: 16px; }
.contact-info-inline .contact-info-item:hover { color: var(--black); }

/* Form box */
.contact-form {
  background: rgba(106,90,205,0.4);
  border: 2px solid var(--tuscan);
  border-radius: 12px;
  padding: 28px 24px;
}
.contacto-right { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.contacto-right h2 { font-family: 'Lexend', sans-serif; font-weight: 700; color: var(--black); margin-bottom: 0; font-size: clamp(1.3rem, 3vw, 1.8rem); text-align: center; }
.faq-inline { margin-top: 32px; }
.faq-inline h3 {
  font-family: 'Lexend', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.3rem); color: var(--black);
  margin-bottom: 20px; line-height: 1.3;
}
.faq-inline .faq-question { font-size: 0.82rem; }
.faq-inline .faq-answer p { font-size: 0.85rem; }

/* Form text — black on indigo box */
.contact-form .form-required-note { color: rgba(0,0,0,0.4); }
.contact-form .form-group label { color: var(--black); font-weight: 500; }
.contact-form .form-group input,
.contact-form .form-group textarea {
  color: var(--black); border-bottom-color: rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.15);
  padding: 8px 6px;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: rgba(0,0,0,0.35); }
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus { border-color: var(--tuscan); background: rgba(255,255,255,0.25); }
.contact-form .form-guidance { color: rgba(0,0,0,0.4); }
.contact-form .form-group::after { background: var(--tuscan); }
.contact-form .form-group:focus-within label { color: var(--black); }
.contact-form .form-group label .required-star { color: var(--black); }

/* RGPD consent checkbox */
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 0 !important; }
.form-consent::after { display: none !important; }
.consent-label,
.contact-form .form-consent .consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.78rem; color: var(--gray-700); line-height: 1.5; cursor: pointer;
  text-transform: none; letter-spacing: normal; font-weight: 400;
}
.consent-label input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; min-width: 22px; margin-top: 1px;
  border: 2px solid var(--gray-500); border-radius: 5px;
  background: rgba(255,255,255,0.5); cursor: pointer;
  display: grid; place-content: center;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.consent-label input[type="checkbox"]::before {
  content: '✓'; font-size: 14px; font-weight: 800; color: white;
  transform: scale(0); transition: transform 0.15s ease-in-out;
}
.consent-label input[type="checkbox"]:checked {
  background: var(--indigo); border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(106,90,205,0.25);
}
.consent-label input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.consent-label a { color: var(--indigo); text-decoration: underline; }
.consent-label a:hover { color: var(--indigo-dark); }
.form-consent .form-error { margin-left: 28px; }

/* CTA principal — solid, prominent */
.contact-form .form-submit {
  background: var(--tuscan); color: var(--black); border: 2px solid var(--tuscan);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  padding: 14px 32px;
}
.contact-form .form-submit:hover {
  background: var(--ivory); color: var(--indigo); border-color: var(--ivory);
}

/* CTA secundario — texto con link amarillo */
.form-agenda-secondary {
  font-family: 'Lexend', sans-serif; font-size: 0.85rem;
  color: var(--black); text-align: center;
  margin-top: 4px; line-height: 1.5;
}
.agenda-link {
  color: var(--tuscan); font-weight: 700; text-decoration: none;
  transition: opacity 0.3s;
}
.agenda-link:hover {
  opacity: 0.8;
}

/* ═══ FOOTER ═══ */
footer { background: var(--indigo); padding: 20px 0; }
.footer-row {
  display: flex; flex-direction: column; gap: 14px; text-align: center; align-items: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-family: 'Lexend', sans-serif;
}
.footer-logo { display: flex; align-items: center; margin-right: 8px; }
.footer-logo-img { height: 28px; display: block; filter: brightness(0) invert(1); }
.footer-brand-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.footer-brand-name {
  font-weight: 700; font-size: 0.8rem; color: #fff;
  text-decoration: none; letter-spacing: -0.02em; transition: color 0.3s;
}
.footer-brand-name:hover { color: var(--green); }
.footer-brand-desc {
  font-weight: 300; font-size: 0.6rem; color: rgba(255,255,255,0.6);
}
.footer-brand-plus {
  font-weight: 300; font-size: 0.9rem; color: rgba(255,255,255,0.4); margin: 0 4px;
}
.footer-copy {
  font-family: 'Roboto', sans-serif; font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.footer-claim {
  font-family: 'Permanent Marker', cursive; font-size: 0.55rem;
  color: rgba(255,255,255,0.55);
}
.footer-links {
  display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.footer-social-link {
  color: rgba(255,255,255,0.7); display: flex; transition: color 0.3s;
}
.footer-social-link:hover { color: var(--green); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-sep { color: rgba(255,255,255,0.2); font-size: 0.8rem; }
.footer-legal-link {
  font-family: 'Roboto', sans-serif; font-size: 0.6rem; font-weight: 300;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s;
}
.footer-legal-link:hover { color: var(--green); }

/* ═══ SCROLL TO TOP ═══ */
.scroll-top {
  position: fixed; bottom: 76px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--indigo); color: var(--ivory); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  box-shadow: 0 2px 12px rgba(106,90,205,0.25);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--black); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ KEYFRAMES ═══ */
@keyframes heroClipUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSepGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══ HERO ENTRANCE ═══ */
.hero-claim, .hero-desc, .hero-reconoces, .hero-cta-group,
.hero-right .editorial-number, .hero-words, .hero-manifesto, .hero-right .hero-quote { opacity: 0; }
.hero-claim        { animation: heroClipUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards; }
.hero-words        { animation: heroClipUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s forwards; }
.hero-desc         { animation: heroClipUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards; }
.hero-reconoces    { animation: heroClipUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards; }
.hero-cta-group    { animation: heroClipUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.85s forwards; }
.hero-right .editorial-number { animation: heroClipUp 1s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; }
.hero-right .hero-quote { animation: heroClipUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards; }
.hero-manifesto    { animation: heroClipUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.75s forwards; }

/* ═══ METODO INFOGRAPHIC ═══ */
.reveal.visible .metodo-info-step { opacity: 0; animation: scaleIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards; }
.reveal.visible .metodo-info-step:nth-child(1) { animation-delay: 0.1s; }
.reveal.visible .metodo-info-step:nth-child(2) { animation-delay: 0.35s; }
.reveal.visible .metodo-info-step:nth-child(3) { animation-delay: 0.6s; }
.reveal.visible .metodo-infografia::before { transform-origin: left; animation: drawLine 1s cubic-bezier(0.16,1,0.3,1) 0.2s forwards; transform: scaleX(0); }

/* ═══ FORM MICRO-INTERACTIONS ═══ */
.form-group { position: relative; }
.form-group::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--indigo);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1), left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.form-group:focus-within::after { width: 100%; left: 0; }
.form-group label { transition: color 0.3s, transform 0.3s; }
.form-group:focus-within label { color: var(--indigo); transform: translateY(-2px); }

/* ═══ REQUIRED FIELD INDICATORS ═══ */
.form-group label .required-star { color: var(--indigo); font-weight: 700; margin-left: 2px; }
.form-required-note {
  font-family: 'Roboto', sans-serif; font-size: 0.75rem; font-weight: 300;
  color: var(--gray-500); margin-bottom: 8px;
}

/* ═══ FORM VALIDATION STATES ═══ */
.form-group.valid input, .form-group.valid select, .form-group.valid textarea { border-color: #4CD964; }
.form-group.valid::after { background: #4CD964; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #E8435A; }
.form-group.invalid::after { background: #E8435A; width: 100%; left: 0; }
.form-error {
  font-family: 'Roboto', sans-serif; font-size: 0.75rem; font-weight: 400;
  color: #E8435A; margin-top: 6px;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
}
.form-group.invalid .form-error { opacity: 1; max-height: 30px; }

/* ═══ TEXTAREA GUIDANCE ═══ */
.form-guidance {
  font-family: 'Roboto', sans-serif; font-size: 0.78rem; font-weight: 300;
  color: var(--gray-500); line-height: 1.7; margin-top: 8px; font-style: italic;
}

/* ═══ SUBMIT BUTTON STATES ═══ */
.form-submit .spinner {
  display: none; width: 16px; height: 16px;
  border: 2px solid rgba(255,245,225,0.3); border-top-color: var(--ivory);
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
.form-submit.sending .spinner { display: inline-block; }
.form-submit .check-icon { display: none; font-size: 1.1rem; }
.form-submit.success { background: #4CD964; color: #fff; }
.form-submit.success .check-icon { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form error banner (replaces alert()) */
.form-error-banner {
  display: none;
  background: #FEE2E2; color: #991B1B;
  border: 1px solid #FECACA; border-radius: 8px;
  padding: 12px 16px; margin-top: 12px;
  font-family: 'Lexend', sans-serif; font-size: 0.82rem; font-weight: 500;
  line-height: 1.5; text-align: center;
}

/* ═══ ACTIVE NAV HIGHLIGHT ═══ */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--indigo);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--indigo); }
.mobile-menu a.active { color: var(--indigo); }

/* ═══ MOBILE STICKY CTA ═══ */
.mobile-sticky-cta {
  display: block; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 899; padding: 12px 20px;
  background: rgba(255,245,225,0.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(106,90,205,0.1);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta a {
  display: block; width: 100%; text-align: center;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--indigo); color: var(--ivory); text-decoration: none;
  padding: 14px 24px; transition: background 0.3s;
}
.mobile-sticky-cta a:hover { background: var(--tuscan); color: var(--black); }

/* ═══ SOCIAL PROOF / RESULTADOS ═══ */
#resultados { background: var(--black-warm); padding: 50px 0; position: relative; overflow: hidden; }
#resultados h2 { color: var(--ivory); }
.resultados-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  margin: 32px 0 40px; border-top: 1px solid rgba(255,245,225,0.08);
}
.stat-item {
  padding: 24px 16px; text-align: center;
  border-right: 1px solid rgba(255,245,225,0.08);
  border-bottom: 1px solid rgba(255,245,225,0.08);
}
.stat-item:nth-child(3n) { border-right: none; }
.stat-number {
  font-family: 'Lexend', sans-serif; font-weight: 900; font-size: 2.4rem;
  color: var(--green); letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix { font-size: 1.8rem; color: var(--tuscan); }
.stat-label {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.85rem;
  color: rgba(255,245,225,0.55); line-height: 1.5;
}
.testimonios-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testimonio {
  background: rgba(255,245,225,0.04); border: 1px solid rgba(255,245,225,0.08);
  border-radius: 8px; padding: 24px 24px; position: relative;
  transition: border-color 0.4s;
}
.testimonio:hover { border-color: rgba(188,246,96,0.3); }
.testimonio-quote {
  font-family: 'Roboto', sans-serif; font-size: 1rem; font-weight: 300;
  color: rgba(255,245,225,0.8); line-height: 1.75; font-style: italic;
  margin-bottom: 24px;
}
.testimonio-quote::before {
  content: '\201C'; font-family: 'Lexend', sans-serif; font-weight: 900; font-size: 3rem;
  color: var(--green); opacity: 0.3; line-height: 0; display: block;
  margin-bottom: 12px;
}
.testimonio-author { display: flex; align-items: center; gap: 12px; }
.testimonio-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.8rem; color: var(--green);
}
.testimonio-info { display: flex; flex-direction: column; }
.testimonio-name {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.85rem;
  color: var(--ivory);
}
.testimonio-role {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.75rem;
  color: rgba(255,245,225,0.45);
}
.resultados-note {
  font-family: 'Roboto', sans-serif; font-size: 0.7rem; font-weight: 300;
  color: rgba(255,245,225,0.25); text-align: center; margin-top: 32px; font-style: italic;
}

/* ═══ CASOS / IMPACTO REAL ═══ */
#casos { background: var(--ivory); padding: 60px 0 50px; position: relative; overflow: hidden; }
#casos > .container {
  background: rgba(31,31,31,0.5); border: 2px solid var(--indigo);
  border-radius: 16px; padding: 36px 28px;
  max-width: 960px; margin: 0 auto;
}
#casos h2 { color: var(--green); font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 4px; }
#casos .section-tag.green.centered::before,
#casos .section-tag.green.centered::after { background: var(--green); }
#casos .section-tag.green { color: var(--green); }
.casos-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
.caso-card {
  background: #fff; border: 1px solid rgba(106,90,205,0.1);
  border-radius: 12px; padding: 28px; transition: border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 2px 12px rgba(106,90,205,0.06);
  display: flex; flex-direction: column;
}
.caso-card:hover { border-color: rgba(106,90,205,0.3); box-shadow: 0 6px 20px rgba(106,90,205,0.1); }
.caso-sector {
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--indigo);
  margin-bottom: 12px;
}
.caso-problema {
  font-family: 'Roboto', sans-serif; font-weight: 400; font-size: 0.85rem;
  color: var(--black); line-height: 1.5; margin-bottom: 16px;
  text-align: justify;
}
.caso-pills { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.caso-pill {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 0.6rem;
  letter-spacing: 0.02em; padding: 3px 10px; border-radius: 20px;
  background: var(--light-purple); color: var(--indigo);
  border: 1px solid rgba(106,90,205,0.15); white-space: nowrap;
  align-self: flex-start;
}
.caso-resultado {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--indigo); line-height: 1.5; margin-bottom: 20px;
}
.caso-resultado .star { color: var(--tuscan); }
.caso-quote {
  border-top: 1px solid rgba(106,90,205,0.08); padding-top: 16px;
}
.caso-quote p {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.9rem;
  color: var(--gray-700); line-height: 1.65; font-style: italic;
  margin-top: 10px; margin-bottom: 0;
}
.caso-author { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }
.caso-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 0.75rem; color: var(--ivory);
}
.caso-info { display: flex; flex-direction: column; }
.caso-name {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.8rem;
  color: var(--black);
}
.caso-role {
  font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 0.7rem;
  color: var(--gray-700);
}
.caso-nombre {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--black); margin: 4px 0 10px; line-height: 1.3;
}
.casos-cta {
  text-align: center; margin-top: 32px;
}
.casos-cta p {
  font-family: 'Lexend', sans-serif; font-weight: 500; font-size: 1rem;
  color: var(--ivory); margin-bottom: 12px;
}
.casos-cta-btn {
  display: inline-block; font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--indigo); background: var(--green); padding: 12px 28px;
  border-radius: 8px; text-decoration: none; transition: background 0.3s, transform 0.2s;
}
.casos-cta-btn:hover { background: var(--tuscan); transform: translateY(-1px); }

/* ═══ HOME FAQ ═══ */
#faq-home {
  padding: 20px 0 32px; background: var(--ivory);
}
.faq-home-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 800px; margin: 0 auto;
}
.faq-home-col { }
.faq-home-title {
  font-family: 'Lexend', sans-serif; font-weight: 600;
  font-size: 1.05rem; color: var(--black); text-align: center;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
#faq-home .faq-question { font-size: 0.82rem; color: var(--gray-700); padding: 8px 0; }
#faq-home .faq-question:hover { color: var(--indigo); }
#faq-home .faq-answer p { font-size: 0.85rem; }
#faq-home .faq-item { border-bottom-color: rgba(106,90,205,0.06); }

/* ═══ TRUST BADGE ═══ */
/* Trust badges — single line */
.form-trust-line {
  font-family: 'Lexend', sans-serif; font-size: 0.72rem; font-weight: 400;
  color: var(--gray-500); text-align: center; letter-spacing: 0.02em;
  line-height: 1.6; margin: 0;
}

/* ═══ FAQ ═══ */
#faq { padding: 40px 0; background: var(--ivory); position: relative; }
.faq-layout { max-width: 800px; margin: 0 auto; }
.faq-layout .section-tag { justify-content: center; }
.faq-layout h2 { text-align: center; margin-bottom: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(106,90,205,0.1);
  padding: 0;
}
.faq-question {
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--black); letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; cursor: pointer; width: 100%;
  background: none; border: none; text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--indigo); }
.faq-icon {
  font-size: 1.4rem; color: var(--indigo); flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  font-weight: 300; width: 24px; text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 0 14px 0; }
.faq-answer p {
  font-family: 'Roboto', sans-serif; font-size: 0.92rem; font-weight: 300;
  color: var(--gray-700); line-height: 1.8;
}

/* ═══ RESPONSIVE: TABLET (min-width: 601px) ═══ */
@media (min-width: 601px) {
  .metodo-process { grid-template-columns: 1fr 1fr; }
}

/* ═══ RESPONSIVE: DESKTOP (min-width: 901px) ═══ */
@media (min-width: 901px) {
  /* Memphis */

  /* Nav */
  nav { padding: 0 60px; }
  .nav-right { display: flex; }
  .hamburger { display: none; }

  /* Container */
  .container { padding: 0 60px; }

  /* Hero */
  #hero { grid-template-columns: 55% 45%; min-height: auto; }
  .hero-left { padding: 48px 40px 48px 56px; align-items: flex-start; }
  .manifesto-line-1, .manifesto-line-2 { flex-wrap: nowrap; }
  .hero-words { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cw { font-size: 1.5rem; }
  .hero-claim-main { font-size: clamp(3rem, 5vw, 4rem); }
  .hero-claim-sub { font-size: clamp(1.1rem, 2vw, 1.35rem); }
  .hero-desc { font-size: 1.05rem; margin-bottom: 28px; max-width: 640px; }
  .hero-reconoces { margin-bottom: 28px; max-width: 640px; }
  .hero-reconoces-items { gap: 6px; }
  .hero-reconoces-item p { font-size: 0.88rem; }
  .hero-cta-group { flex-direction: row; gap: 32px; width: auto; }
  .btn-primary { width: auto; padding: 16px 36px; }
  .hero-right { min-height: auto; padding: 28px 24px; }
  /* hero-quote removed */
  .hero-right .editorial-number { font-size: 6rem; top: 8px; bottom: auto; right: -4px; opacity: 0.25; }
  .hero-right .editorial-number .dot-yellow { opacity: 0.35; }
  /* hero-quote removed */

  /* Que Es */
  #que-es { padding: 70px 0; }
  .quees-header { grid-template-columns: 1fr 1fr; gap: 80px; }
  .quees-columns { grid-template-columns: 1fr 1fr; }
  .quees-list--wide { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }

  /* Posicionamiento */
  #posicionamiento { padding: 24px 0; }
  .posicionamiento-layout { flex-direction: row; gap: 48px; align-items: start; }
  .posicionamiento-text { flex: 1; }
  .posicionamiento-text h2 { font-size: 2rem; }
  .posicionamiento-right { flex: 0 1 auto; max-width: 520px; padding-top: 96px; }

  /* Metodo */
  #metodo { padding: 48px 0 0; }
  .metodo-infografia { max-width: 400px; gap: 32px; }
  .info-circle { width: 60px; height: 60px; }
  .metodo-infografia::before { top: 46px; }
  .info-label { font-size: 0.75rem; }
  .metodo-process { grid-template-columns: repeat(4,1fr); }
  .metodo-step { padding: 28px; }

  /* Servicios / Packs */
  #servicios { padding: 80px 0; }
  .pack-tabs { display: none; }
  .packs-carousel { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
  .packs-carousel .pack-card { display: flex !important; }
  .packs-carousel .pack-card[hidden] { display: flex !important; }
  .pack-card:hover {
    transform: translateY(-6px); border-color: var(--indigo);
    box-shadow: 0 12px 40px rgba(106,90,205,0.15);
  }
  .nave-nexo-block { flex-direction: row; text-align: left; justify-content: flex-start; align-items: center; padding: 40px 48px; gap: 32px; }
  .nave-nexo-icon { width: 52px; height: 52px; }
  .nave-nexo-text { flex: 1; }
  .nave-nexo-text strong { display: inline; margin-bottom: 0; }
  .nave-nexo-precio { display: inline-block; margin-top: 10px; }

  /* Para Quien (legacy — kept for subpages) */
  #para-quien { padding: 80px 0; }
  .para-quien-cards { grid-template-columns: repeat(3,1fr); }

  /* Nosotras */
  #nosotras { padding: 70px 0 50px; }
  .nosotras-intro { flex-direction: row; gap: 40px; align-items: flex-start; }
  .nosotras-photos { gap: 16px; min-width: 380px; flex-shrink: 0; }
  .nosotras-photo-item picture { max-height: 280px; }
  .nosotras-intro-text p { font-size: 1rem; }
  .nosotras-bios p { font-size: 1rem; }
  .nosotras-historia p { font-size: 1rem; }
  .nosotras-photo-name { font-size: 0.85rem; }

  /* Home: Método */
  #metodo-home { padding: 36px 0 32px; }
  .metodo-home-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .metodo-home-grid::before {
    content: ''; position: absolute;
    top: 32px; left: 18%; right: 18%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--indigo), rgba(106,90,205,0.3), var(--indigo), transparent);
    z-index: 0;
  }
  .metodo-home-step { position: relative; z-index: 1; }

  /* Home: Packs */
  #packs-home { padding: 32px 0 28px; }
  .packs-home-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }

  /* Home: FAQ */
  .faq-home-grid { grid-template-columns: 1fr 1fr; gap: 0 40px; }

  /* Home: Proof */
  #proof-home { padding: 40px 0; }
  .proof-home-layout { flex-direction: row; text-align: left; gap: 40px; align-items: center; }
  .proof-home-stats { gap: 36px; }
  .proof-stat { align-items: flex-start; }
  .proof-review { text-align: left; max-width: 360px; }
  .proof-author { justify-content: flex-start; }
  .proof-footer { text-align: left; }
  .proof-home-text p { margin: 0 0 16px; }

  /* CTA Banner */
  .cta-banner-content { flex-direction: row; justify-content: space-between; text-align: left; gap: 40px; }
  .cta-banner-btns { flex-direction: row; width: auto; }
  .cta-banner-btn { width: auto; }

  /* Contacto */
  #contacto { padding: 60px 0; }
  .contacto-layout {
    display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 20px 60px; align-items: start;
    grid-template-rows: auto 1fr;
  }
  .contacto-intro { grid-column: 1; grid-row: 1; }
  .contacto-faq { grid-column: 1; grid-row: 2; padding-top: 24px; border-top: none; }
  .contacto-right { grid-column: 2; grid-row: 1 / -1; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-submit { width: auto; }
  .form-agenda-secondary { text-align: center; }
  .form-agendar { width: auto; text-align: left; }
  .contact-form { padding: 36px 40px; }

  /* FAQ */
  .faq-question { font-size: 1rem; }

  /* Resultados */
  .stat-number { font-size: 3.2rem; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }

  /* Casos — subgrid para alinear filas internas */
  .casos-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto auto auto auto;
    column-gap: 28px; row-gap: 0;
  }
  .caso-card {
    display: grid; grid-row: span 6; grid-template-rows: subgrid; row-gap: 0;
  }
  .caso-sector { margin-bottom: 4px; }
  .caso-nombre { margin-bottom: 10px; }
  .caso-problema { margin-bottom: 16px; align-self: start; }
  .caso-pills { margin-bottom: 24px; align-self: start; }
  .caso-resultado { margin-bottom: 20px; align-self: start; }
  .caso-quote { align-self: start; }

  /* Footer */
  .footer-row { flex-direction: row; justify-content: space-between; gap: 0; text-align: left; }
  .footer-brand { justify-content: flex-start; }
  .footer-brand-item { align-items: flex-start; }
  .footer-links { justify-content: flex-end; flex-wrap: nowrap; }

  /* Scroll top */
  .scroll-top { bottom: 28px; }

  /* Mobile sticky CTA */
  .mobile-sticky-cta { display: none; }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-claim, .hero-desc, .hero-reconoces, .hero-cta-group,
  .hero-right .editorial-number, .hero-words, .hero-manifesto, .hero-right .hero-quote { opacity: 1; }
  .cw { opacity: 0.55; transform: none; }
  .cw.on { opacity: 1; }
}

/* ═══ PAGE SPACING ═══ */
.page-top { margin-top: 76px; padding-top: 48px; }
