:root {
  --negro: #0A0A0A;
  --hueso: #FAFAF7;
  --lima: #E8FF5C;
  --gris: #6B6864;
  --grafito: #3D3D3D;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--negro);
  color: var(--hueso);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR PERSONALIZADO */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--lima);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease;
  mix-blend-mode: difference;
  top: 0;
  left: 0;
}
.cursor-outline {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 255, 92, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s ease-out, width 0.4s ease, height 0.4s ease, border-color 0.4s ease;
  top: 0;
  left: 0;
}
.cursor.is-hover {
  width: 0;
  height: 0;
}
.cursor-outline.is-hover {
  width: 80px;
  height: 80px;
  background: var(--lima);
  border-color: var(--lima);
  mix-blend-mode: difference;
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-outline { display: none; }
}

/* LOADER inicial */
.loader {
  position: fixed;
  inset: 0;
  background: var(--negro);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.loader-dot {
  width: 16px;
  height: 16px;
  background: var(--lima);
  border-radius: 50%;
  animation: loaderPulse 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}
.loader-text {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.4s ease, padding 0.4s ease;
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 0.5px solid rgba(232, 255, 92, 0.15);
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--hueso);
  text-decoration: none;
}
.nav-logo .word {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.nav-logo .punto { color: var(--lima); }
.nav-logo .media {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: rgba(250, 250, 247, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lima);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--hueso); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--lima);
  color: var(--negro) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(232, 255, 92, 0.4);
}
.nav-cta::after { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar { padding: 16px 24px; }
}

/* HERO */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--negro);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 32px;
  pointer-events: none;
}
.hero-label {
  font-size: 11px;
  color: var(--lima);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .word-wrap {
  display: inline-block;
  overflow: hidden;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(120%);
}
.hero-title .lima-word {
  color: var(--lima);
}
.hero-sub {
  font-size: 18px;
  color: var(--hueso);
  max-width: 580px;
  margin: 40px auto 0;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-wrap {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: auto;
}
.btn-primary {
  background: var(--lima);
  color: var(--negro);
  padding: 22px 44px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--negro);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(232, 255, 92, 0.5);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary:hover > * { color: var(--lima); }
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.hero-meta {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.4);
  letter-spacing: 0.1em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--lima));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* MARQUEE de sectores */
.marquee-section {
  background: var(--lima);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-section::before, .marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(to right, var(--lima), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(to left, var(--lima), transparent); }
.marquee {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marqueeMove 12s linear infinite;
}
.marquee-item {
  font-size: 22px;
  color: var(--negro);
  font-weight: 500;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee-item::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--negro);
  border-radius: 50%;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* MANIFIESTO */
.manifest {
  background: var(--negro);
  padding: 120px 48px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.manifest-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.manifest .section-label {
  justify-content: center;
  margin-bottom: 10px;
}
.manifest h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 100%;
}
.manifest-intro {
  font-size: 18px;
  color: rgba(250, 250, 247, 0.7);
  max-width: 720px;
  margin: 4px auto 0;
  line-height: 1.7;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--lima);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--lima);
}
.manifest h2 .reveal-line {
  display: block;
  overflow: hidden;
}
.manifest h2 .reveal-text {
  display: inline-block;
}
.manifest h2 .lima { color: var(--lima); }
.manifest h2 .muted { color: var(--hueso); }

.manifest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 0.5px solid rgba(232, 255, 92, 0.2);
  border-bottom: 0.5px solid rgba(232, 255, 92, 0.2);
}
.manifest-cell {
  padding: 48px 36px;
  border-right: 0.5px solid rgba(232, 255, 92, 0.2);
  position: relative;
  transition: background 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}
.manifest-cell:last-child { border-right: none; }
.manifest-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lima);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.manifest-cell:hover::before { transform: translateY(0); }
.manifest-cell > * { position: relative; z-index: 1; transition: color 0.4s ease; }
.manifest-cell:hover > * { color: var(--negro); }
.manifest-cell-num {
  font-size: 12px;
  color: var(--lima);
  letter-spacing: 0.35em;
  margin-bottom: 24px;
  font-weight: 500;
}
.manifest-cell:hover .manifest-cell-num { color: var(--negro); }
.manifest-cell-text {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--hueso);
}

@media (max-width: 900px) {
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-cell { border-right: none; border-bottom: 0.5px solid rgba(232, 255, 92, 0.2); }
}

/* SERVICIOS con efecto sticky */
.services {
  background: var(--hueso);
  color: var(--negro);
  padding: 120px 48px;
  position: relative;
}
.services-header {
  max-width: 900px;
  margin-bottom: 64px;
}
.services .section-label {
  color: var(--negro);
}
.services .section-label::before { background: var(--negro); }
.services h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 32px 0;
}
.services h2 .lima-mark {
  position: relative;
  display: inline-block;
}
.services h2 .lima-mark::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 8%;
  bottom: 8%;
  background: var(--lima);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.services h2 .lima-mark.in-view::before {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.services-intro {
  font-size: 18px;
  color: var(--gris);
  max-width: 600px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1500px;
}
.service-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--negro);
  z-index: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-16px) scale(1.02);
  border-color: var(--lima);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover .service-num { color: var(--lima); }
.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: var(--hueso);
}
.service-num {
  font-size: 14px;
  letter-spacing: 0.35em;
  color: var(--gris);
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}
.service-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color: var(--negro);
  transition: color 0.4s ease;
}
.service-desc {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
}
.service-arrow {
  margin-top: 24px;
  font-size: 24px;
  color: var(--negro);
  transition: color 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-arrow {
  color: var(--lima);
  transform: translateX(8px);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* MÉTODO con timeline horizontal */
.method {
  background: var(--negro);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.method-header { margin-bottom: 120px; max-width: 900px; }
.method h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
  color: var(--hueso);
}
.method h2 .lima { color: var(--lima); }
.method-track {
  position: relative;
  padding-top: 60px;
}
.method-line-bg {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(232, 255, 92, 0.15);
  overflow: hidden;
  border-radius: 2px;
}
.method-line-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200px;
  width: 200px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--lima), var(--lima), transparent);
  animation: lineWave 4s linear infinite;
  box-shadow: 0 0 20px var(--lima);
}
@keyframes lineWave {
  0% { left: -200px; }
  100% { left: 100%; }
}
.method-line-fill {
  position: absolute;
  top: 60px;
  left: 0;
  height: 2px;
  background: var(--lima);
  width: 0;
  box-shadow: 0 0 16px var(--lima);
  border-radius: 2px;
  z-index: 2;
}

/* Dot que recorre la línea */
.method-traveling-dot {
  position: absolute;
  top: 54px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lima);
  box-shadow: 0 0 28px var(--lima), 0 0 56px rgba(232, 255, 92, 0.4);
  z-index: 3;
  transition: left 0.3s ease;
}
.method-traveling-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--lima);
  animation: travelingPulse 1.5s ease-out infinite;
}
@keyframes travelingPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.method-step {
  position: relative;
  padding-top: 140px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}
.method-step:hover {
  transform: translateY(-12px);
}
.method-dot {
  position: absolute;
  top: 55px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lima);
  box-shadow: 0 0 0 5px rgba(232, 255, 92, 0.18), 0 0 20px var(--lima);
  animation: dotPulse 2s ease-in-out infinite;
}
.method-step:nth-child(1) .method-dot { animation-delay: 0s; }
.method-step:nth-child(2) .method-dot { animation-delay: 0.4s; }
.method-step:nth-child(3) .method-dot { animation-delay: 0.8s; }
.method-step:nth-child(4) .method-dot { animation-delay: 1.2s; }
@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 0 6px rgba(232, 255, 92, 0.15), 0 0 20px var(--lima);
  }
  50% { 
    transform: scale(1.3); 
    box-shadow: 0 0 0 12px rgba(232, 255, 92, 0.08), 0 0 32px var(--lima);
  }
}
.method-step:hover .method-dot {
  animation: none;
  transform: scale(1.5);
  box-shadow: 0 0 0 14px rgba(232, 255, 92, 0.2), 0 0 40px var(--lima);
}
.method-num {
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 500;
  color: rgba(232, 255, 92, 0.85);
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 0 0 24px 0;
  animation: floatNum 4s ease-in-out infinite;
  transition: color 0.4s ease, transform 0.4s ease;
}
.method-step:nth-child(1) .method-num { animation-delay: 0s; }
.method-step:nth-child(2) .method-num { animation-delay: 0.5s; }
.method-step:nth-child(3) .method-num { animation-delay: 1s; }
.method-step:nth-child(4) .method-num { animation-delay: 1.5s; }
@keyframes floatNum {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.method-step:hover .method-num {
  color: var(--lima);
  animation: none;
}
.method-step-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--hueso);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.method-step:hover .method-step-title { color: var(--lima); }
.method-step-desc {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.65;
  margin: 0;
  transition: color 0.4s ease;
}
.method-step:hover .method-step-desc {
  color: rgba(250, 250, 247, 0.85);
}

@media (max-width: 900px) {
  .method-grid { grid-template-columns: 1fr; gap: 48px; }
  .method-line-bg, .method-line-fill { display: none; }
  .method-dot { top: 64px; }
  .method-step { padding-left: 32px; }
  .method-step-title { padding-top: 0; }
}

/* CASOS DE ÉXITO */
.cases {
  background: #F1EFE8;
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.cases-header { margin-bottom: 64px; max-width: 900px; }
.cases .section-label { color: var(--negro); }
.cases .section-label::before { background: var(--negro); }
.cases h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 32px 0;
  color: var(--negro);
}
.cases h2 .lima {
  position: relative;
  display: inline-block;
}
.cases h2 .lima::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 8%;
  bottom: 8%;
  background: var(--lima);
  z-index: -1;
}
.cases h2 .lima { color: var(--negro); }
.cases-intro {
  font-size: 18px;
  color: var(--gris);
  max-width: 600px;
  line-height: 1.65;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 380px;
  text-decoration: none;
  color: inherit;
}
.case-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 255, 92, 0.4), transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.case-card:hover {
  background: #FFFFFF;
  border-color: var(--lima);
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
}
.case-card:hover::before { opacity: 1; }
.case-label {
  font-size: 11px;
  color: var(--gris);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.case-context {
  font-size: 14px;
  color: var(--negro);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.case-result {
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.case-num {
  font-size: clamp(80px, 10vw, 120px);
  font-weight: 500;
  color: var(--negro);
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 0 0 12px 0;
  position: relative;
  display: inline-block;
}
.case-num::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 35%;
  bottom: 0;
  background: var(--lima);
  z-index: -1;
}
.case-desc {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.5;
}
.cases-note {
  font-size: 12px;
  color: var(--gris);
  font-style: italic;
  margin-top: 40px;
  max-width: 600px;
}

@media (max-width: 900px) {
  .cases-grid { grid-template-columns: 1fr; }
}

/* SOBRE NOSOTROS con monograma 3D */
.about {
  background: var(--negro);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-3d-container {
  perspective: 1200px;
  display: flex;
  justify-content: center;
}
.about-card {
  background: #FAFAF7;
  border-radius: 24px;
  padding: 64px 48px;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.about-card:hover {
  transform: rotateY(-12deg) rotateX(6deg) translateZ(20px);
  box-shadow: -30px 30px 60px -20px rgba(232, 255, 92, 0.35);
}
.about-mono {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background: var(--lima);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 44px;
  font-weight: 500;
  color: var(--negro);
  letter-spacing: -0.08em;
  box-shadow: 0 20px 40px -8px rgba(232, 255, 92, 0.5);
  transform: translateZ(40px);
}
.about-photo {
  width: 100%;
  margin-bottom: 32px;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: #EEEDE6;
  border: 1.5px dashed #B4B2A9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.about-photo-icon {
  font-size: 32px;
  opacity: 0.5;
}
.about-photo-text {
  font-size: 12px;
  color: var(--gris);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-card .nombre {
  font-size: 22px;
  font-weight: 500;
  color: var(--negro);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}
.about-card .role {
  font-size: 13px;
  color: var(--gris);
  margin: 0;
}
.about-text .section-label { color: var(--lima); }
.about-text .section-label::before { background: var(--lima); }
.about-text h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0 0 32px 0;
  color: var(--hueso);
}
.about-text h2 .lima-mark {
  position: relative;
  display: inline-block;
}
.about-text h2 .lima-mark::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 10%;
  bottom: 10%;
  background: var(--lima);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.about-text h2 .lima-mark.in-view::before {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.4s;
}
.about-text h2 .lima-mark {
  color: var(--negro);
  padding: 0 4px;
}
.about-text p {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.85);
  line-height: 1.7;
  margin: 0 0 20px 0;
  max-width: 580px;
}
.about-text p.muted { color: rgba(250, 250, 247, 0.55); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* FAQ */
.faq {
  background: var(--hueso);
  color: var(--negro);
  padding: 120px 48px;
  position: relative;
  text-align: center;
}
.faq-header {
  max-width: 900px;
  margin: 0 auto 56px;
}
.faq .section-label {
  color: var(--negro);
  justify-content: center;
}
.faq .section-label::before { background: var(--negro); }
.faq h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0;
  color: var(--negro);
}
.faq h2 .lima-mark {
  position: relative;
  display: inline-block;
}
.faq h2 .lima-mark::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 8%;
  bottom: 8%;
  background: var(--lima);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.faq h2 .lima-mark.in-view::before {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 0.5px solid rgba(0, 0, 0, 0.15);
  text-align: left;
}
.faq-item {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
  position: relative;
  transition: padding 0.4s ease;
}
.faq-question {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--negro);
  letter-spacing: -0.015em;
  transition: color 0.4s ease;
}
.faq-question:hover {
  color: var(--negro);
}
.faq-question:hover .faq-icon {
  background: var(--lima);
  transform: rotate(90deg);
}
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.5px solid var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 24px;
  transition: background 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}
.faq-item.active .faq-icon {
  background: var(--lima);
  border-color: var(--lima);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-item.active .faq-answer {
  max-height: 400px;
}
.faq-answer-content {
  padding: 0 0 32px 0;
  font-size: 16px;
  color: var(--gris);
  line-height: 1.7;
  max-width: 85%;
}

/* ===== BLOQUE 3: BENEFICIOS ===== */
.benefits {
  background: var(--hueso);
  color: var(--negro);
  padding: 120px 48px;
  position: relative;
}
.benefits-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.benefits .section-label { color: var(--negro); }
.benefits .section-label::before { background: var(--negro); }
.benefits h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0 0 24px 0;
  color: var(--negro);
}
.benefits h2 .lima-mark {
  position: relative;
  display: inline-block;
}
.benefits h2 .lima-mark::before {
  content: '';
  position: absolute;
  left: -8px; right: -8px; top: 10%; bottom: 10%;
  background: var(--lima);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
}
.benefits h2 .lima-mark.in-view::before {
  transform: scaleX(1);
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.benefits-intro {
  font-size: 17px;
  color: var(--gris);
  line-height: 1.65;
  margin: 0 0 40px 0;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #FFFFFF;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}
.benefit-item:hover {
  transform: translateX(8px);
  border-color: var(--lima);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.12);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lima);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.benefit-text h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--negro);
  margin: 0 0 6px 0;
  letter-spacing: -0.02em;
}
.benefit-text p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
  margin: 0;
}
.benefits-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--negro);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-visual-mono {
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 600;
  color: var(--lima);
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.95;
}
.benefits-visual-mono .punto { color: var(--hueso); }
.benefits-visual-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-size: 13px;
  color: rgba(250,250,247,0.6);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .benefits-grid-wrap { grid-template-columns: 1fr; gap: 48px; }
  .benefits-visual { aspect-ratio: 16/10; }
}

/* ===== BLOQUE 4: MÉTRICAS ===== */
.metrics {
  background: var(--negro);
  padding: 110px 48px;
  position: relative;
  overflow: hidden;
}
.metrics-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.metrics .section-label { color: var(--lima); justify-content: center; }
.metrics h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0;
  color: var(--hueso);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.metric-card {
  text-align: center;
  padding: 48px 32px;
  border: 0.5px solid rgba(232,255,92,0.2);
  border-radius: 20px;
  background: rgba(250,250,247,0.02);
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}
.metric-card:hover {
  transform: translateY(-8px);
  background: rgba(232,255,92,0.04);
  border-color: rgba(232,255,92,0.4);
}
.metric-num {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 500;
  color: var(--lima);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 0 0 16px 0;
}
.metric-label {
  font-size: 16px;
  color: var(--hueso);
  font-weight: 500;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.metric-desc {
  font-size: 13px;
  color: rgba(250,250,247,0.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .metrics-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== BLOQUE 6: TESTIMONIOS ===== */
.testimonials {
  background: var(--hueso);
  color: var(--negro);
  padding: 120px 48px;
  position: relative;
}
.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.testimonials .section-label { color: var(--negro); justify-content: center; }
.testimonials h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0;
  color: var(--negro);
}
.testimonials h2 .lima-mark {
  position: relative;
  display: inline-block;
}
.testimonials h2 .lima-mark::before {
  content: '';
  position: absolute;
  left: -8px; right: -8px; top: 10%; bottom: 10%;
  background: var(--lima);
  z-index: -1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 40px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
}
.testimonial-video {
  aspect-ratio: 16/10;
  border-radius: 16px;
  background: var(--negro);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.testimonial-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232,255,92,0.1), transparent 70%);
}
.testimonial-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lima);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.testimonial-play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--negro);
  margin-left: 5px;
}
.testimonial-video:hover .testimonial-play {
  transform: scale(1.15);
}
.testimonial-video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  color: rgba(250,250,247,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.testimonial-quote {
  font-size: 18px;
  color: var(--negro);
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lima);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--negro);
}
.testimonial-author-info .name {
  font-size: 14px;
  font-weight: 500;
  color: var(--negro);
  margin: 0;
}
.testimonial-author-info .role {
  font-size: 12px;
  color: var(--gris);
  margin: 0;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== BLOQUE 8: POR QUÉ MULTICANAL ===== */
.multichannel {
  background: var(--negro);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
.multichannel-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}
.multichannel .section-label { color: var(--lima); justify-content: center; }
.multichannel h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin: 0;
  color: var(--hueso);
}
.multichannel h2 .lima { color: var(--lima); }
.multichannel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pillar-card {
  padding: 48px 36px;
  border-radius: 20px;
  background: rgba(250,250,247,0.02);
  border: 0.5px solid rgba(250,250,247,0.1);
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-10px);
  background: rgba(232,255,92,0.04);
  border-color: rgba(232,255,92,0.3);
}
.pillar-num {
  font-size: 14px;
  color: var(--lima);
  letter-spacing: 0.3em;
  font-weight: 500;
  margin-bottom: 24px;
}
.pillar-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--hueso);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}
.pillar-desc {
  font-size: 14px;
  color: rgba(250,250,247,0.6);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .multichannel-grid { grid-template-columns: 1fr; }
}
.multichannel-footnote {
  text-align: center;
  max-width: 700px;
  margin: 48px auto 0;
  font-size: 14px;
  color: rgba(250, 250, 247, 0.45);
  line-height: 1.7;
  font-style: italic;
}

/* BOTÓN FLOTANTE STICKY */
.floating-cta {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.85);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.floating-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta.in-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px) scale(0.85);
}
.floating-cta a {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--lima);
  color: var(--negro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  padding: 14px;
  box-shadow: 0 20px 50px -10px rgba(232, 255, 92, 0.6), 0 8px 20px -4px rgba(10, 10, 10, 0.3);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
  border: 1.5px solid var(--negro);
  position: relative;
  overflow: hidden;
  animation: floatingFloat 3s ease-in-out infinite;
}
@keyframes floatingFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.floating-cta a:hover {
  background: var(--negro);
  color: var(--lima);
  border-color: var(--lima);
  animation: none;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 24px 60px -8px rgba(232, 255, 92, 0.7), 0 12px 28px -4px rgba(10, 10, 10, 0.4);
}
.floating-cta .floating-text {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.25;
}
.floating-cta .floating-arrow {
  font-size: 18px;
  margin-top: 4px;
  transition: transform 0.4s ease;
  display: inline-block;
}
.floating-cta a:hover .floating-arrow {
  transform: translateX(4px);
}
.floating-cta-dot {
  display: none;
}
@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
  }
  .floating-cta a {
    width: 100px;
    height: 100px;
    font-size: 10px;
    padding: 12px;
  }
  .floating-cta .floating-text { font-size: 10px; }
  .floating-cta .floating-arrow { font-size: 14px; }
}

.cta-full {
  background: var(--lima);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-ring.r1 { width: 600px; height: 600px; animation: spinSlow 40s linear infinite; }
.cta-ring.r2 { width: 900px; height: 900px; animation: spinSlow 60s linear infinite reverse; border-color: rgba(10, 10, 10, 0.05); }
.cta-ring.r3 { width: 1200px; height: 1200px; animation: spinSlow 80s linear infinite; border-color: rgba(10, 10, 10, 0.04); }
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-label {
  font-size: 11px;
  color: var(--negro);
  opacity: 0.55;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-label::before, .cta-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--negro);
  opacity: 0.4;
}
.cta-full h2 {
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 500;
  color: var(--negro);
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 32px 0;
}
.cta-full h2 .muted { opacity: 0.4; }
.cta-full > .cta-content > p {
  font-size: 19px;
  color: var(--negro);
  opacity: 0.7;
  margin: 0 auto 48px;
  max-width: 580px;
  line-height: 1.6;
}
.btn-dark {
  background: var(--negro);
  color: var(--hueso);
  padding: 22px 48px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hueso);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-dark > * { position: relative; z-index: 1; transition: color 0.3s ease; }
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -8px rgba(10, 10, 10, 0.4);
}
.btn-dark:hover::before { transform: translateY(0); }
.btn-dark:hover > * { color: var(--negro); }
.cta-meta {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.45);
  margin-top: 28px;
  letter-spacing: 0.1em;
}

/* FOOTER */
.footer {
  background: var(--negro);
  padding: 100px 48px 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-brand .word {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--hueso);
}
.footer-brand .punto { color: var(--lima); }
.footer-brand .media {
  font-size: 10px;
  color: rgba(250, 250, 247, 0.5);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.65;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.35);
}
.footer-col-label {
  font-size: 10px;
  color: var(--lima);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.footer-link {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.65);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  cursor: pointer;
}
.footer-link:hover {
  color: var(--lima);
  padding-left: 6px;
}
.footer-bottom {
  border-top: 0.5px solid rgba(250, 250, 247, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(250, 250, 247, 0.4);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom .lima { color: var(--lima); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Sección headers responsive */
@media (max-width: 768px) {
  .hero, .manifest, .services, .method, .cases, .about, .cta-full,
  .benefits, .metrics, .testimonials, .multichannel, .faq {
    padding-left: 24px;
    padding-right: 24px;
  }
  .manifest, .services, .method, .cases, .about, .cta-full,
  .benefits, .metrics, .testimonials, .multichannel, .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* Animaciones reveal genéricas */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.stagger.in-view > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.stagger.in-view > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.stagger.in-view > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.stagger.in-view > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.stagger.in-view > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.stagger.in-view > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }