/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

:root {
  --magenta: #C53771;
  --cyan: #F282B0;
  --teal: #FCF5BE;
  --mint: #FBC4D2;
  --gold: #FCF6EC;
  --blush: #FCDAE5;
  --white: #FFFFFF;
  --ink: #0B0B0F;
  --ink-soft: #6B6A72;
  --paper: #FFFFFF;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Space Grotesk", system-ui, sans-serif;
  --font-script: "Unbounded", system-ui, sans-serif;
  --radius: 26px;
  --shadow-soft: 0 24px 60px -20px rgba(11, 11, 15, 0.35);
  --border-ink: 2px solid var(--ink);
}

html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--magenta); color: var(--white);
  padding: 12px 18px; border-radius: 0 0 12px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 4px; }

/* ============ GRAIN + CURSOR GLOW ============ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: 0.03; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 460px; height: 460px; border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(242, 130, 176, 0.16), rgba(197, 55, 113, 0.12) 45%, transparent 70%);
  transform: translate(-50%, -50%); left: 50%; top: 30%;
  transition: left 0.35s ease-out, top 0.35s ease-out; will-change: left, top;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ============ SIGNATURE MOTIF: dot grid + corner brackets ============ */
.dot-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(currentColor 1.4px, transparent 1.4px);
  background-size: 26px 26px; opacity: 0.16;
}
.brackets { position: relative; }
.brackets::before, .brackets::after {
  content: ""; position: absolute; width: 22px; height: 22px; border: 2px solid currentColor; z-index: 3;
}
.brackets::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.brackets::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* ============ ORBES 3D DIFUMINADOS (bloques de color) ============ */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }

.quien-soy .orb-1 { width: 320px; height: 320px; background: var(--cyan); opacity: 0.55; top: -100px; left: -70px; }
.quien-soy .orb-2 { width: 280px; height: 280px; background: var(--mint); opacity: 0.4; bottom: -120px; right: 6%; }

.caso-inner .orb-1 { width: 300px; height: 300px; background: var(--teal); opacity: 0.55; top: -80px; right: -50px; }
.caso-inner .orb-2 { width: 260px; height: 260px; background: var(--white); opacity: 0.3; bottom: -90px; left: 8%; }

.incluye .orb-1 { width: 340px; height: 340px; background: var(--magenta); opacity: 0.32; top: -110px; right: 8%; }
.incluye .orb-2 { width: 300px; height: 300px; background: var(--cyan); opacity: 0.28; bottom: -130px; left: -60px; }

.proceso-visual .orb-1 { width: 300px; height: 300px; background: var(--magenta); opacity: 0.28; top: -90px; left: 10%; }
.proceso-visual .orb-2 { width: 260px; height: 260px; background: var(--teal); opacity: 0.28; bottom: -100px; right: -40px; }

.contacto .orb-1 { width: 340px; height: 340px; background: var(--cyan); opacity: 0.35; top: -110px; left: -60px; }
.contacto .orb-2 { width: 300px; height: 300px; background: var(--magenta); opacity: 0.35; bottom: -110px; right: 6%; }

@media (max-width: 700px) { .orb { transform: scale(0.7); } }

/* ============ TYPOGRAPHY HELPERS ============ */
.eyebrow {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem;
  font-weight: 600; color: var(--magenta); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow-dark { color: var(--ink); }
.eyebrow-light { color: var(--white); }
.section-title {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.15; max-width: 18ch; letter-spacing: -0.01em;
}
.section-title-dark { color: var(--white); max-width: 20ch; }
.script-accent { font-family: var(--font-display); font-weight: 700; color: var(--magenta); font-style: normal; }
.script-accent-dark { color: var(--ink); border-bottom: 3px solid var(--magenta); }

/* ============ DECORATIVE SHAPES ============ */
.shape { position: absolute; pointer-events: none; z-index: 0; user-select: none; }
.shape-star {
  font-size: 1.6rem; line-height: 1; color: var(--magenta); filter: drop-shadow(0 0 10px currentColor);
  animation: sparkle-pulse 3.4s ease-in-out infinite;
}
.shape-star-1 { top: 14%; left: 5%; color: var(--magenta); font-size: 1.3rem; }
.shape-star-2 { top: 8%; right: 13%; color: var(--cyan); animation-delay: -1.2s; }
.shape-star-3 { top: 10%; right: 7%; color: var(--white); font-size: 1.5rem; animation-delay: -2s; }
.shape-star-4 { top: 12%; left: 8%; color: var(--cyan); font-size: 1.5rem; animation-delay: -0.6s; }
@keyframes sparkle-pulse { 0%, 100% { opacity: 0.55; transform: scale(0.9) rotate(-6deg); } 50% { opacity: 1; transform: scale(1.15) rotate(8deg); } }
.shape-flower { display: none; }

.ring-outline {
  position: absolute; border: 2px solid currentColor; border-radius: 50%; opacity: 0.35; pointer-events: none; z-index: 0;
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 999px;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.96rem; border: none; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--magenta); color: var(--white); box-shadow: 0 14px 30px -10px rgba(197, 55, 113, 0.5); }
.btn-primary:hover { box-shadow: 0 20px 38px -12px rgba(197, 55, 113, 0.6); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-text { background: transparent; color: var(--ink); padding-left: 4px; }
.btn-circle {
  width: 34px; height: 34px; border-radius: 50%; border: var(--border-ink); display: inline-flex;
  align-items: center; justify-content: center; font-size: 0.9rem; transition: background 0.2s ease, color 0.2s ease;
}
.btn-text:hover .btn-circle { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.btn-arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav.is-scrolled {
  padding: 10px 0; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px -20px rgba(11,11,15,0.35);
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-brand img { height: 74px; width: auto; display: block; transition: height 0.3s ease; }
.nav.is-scrolled .nav-brand img { height: 44px; }
.nav-links { display: flex; gap: 26px; font-family: var(--font-mono); font-size: 0.92rem; font-weight: 500; }
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--magenta);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--magenta); color: var(--white); padding: 10px 20px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.86rem; font-weight: 600; transition: filter 0.25s ease;
}
.nav-cta:hover { filter: brightness(0.88); }

.lang-switch {
  display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px;
  border: 1.5px solid rgba(11, 11, 15, 0.14); background: rgba(11, 11, 15, 0.03);
}
.lang-switch button {
  background: none; border: none; padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink-soft); transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button.is-active { background: var(--ink); color: var(--white); }
.lang-switch button:hover:not(.is-active) { color: var(--ink); }
.lang-switch-mobile { align-self: flex-start; margin: 10px 0 4px; }
.lang-switch-mobile button { padding: 7px 14px; font-size: 0.86rem; }

@media (max-width: 900px) {
  .lang-switch:not(.lang-switch-mobile) { display: none; }
}
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--magenta); display: block; transition: transform 0.25s ease, opacity 0.25s ease; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; background: var(--paper); padding: 12px 24px 24px;
  border-radius: 0 0 24px 24px; box-shadow: var(--shadow-soft);
}
.mobile-menu a { padding: 12px 4px; font-weight: 500; font-family: var(--font-mono); border-bottom: 1px solid rgba(11,11,15,0.08); }
.mobile-menu .btn { margin-top: 10px; justify-content: center; }
.mobile-menu.is-open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============ HERO ============ */
.hero { position: relative; padding: 150px 0 0; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; letter-spacing: -0.01em; max-width: 15ch; margin: 8px 0 22px; }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; line-height: 1.6; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

.hero-visual { position: relative; display: flex; justify-content: center; padding: 20px 0 60px; color: var(--cyan); }
.hero-arch {
  position: absolute; width: 340px; height: 340px; top: 30px; right: 8%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--cyan), var(--teal) 70%);
  box-shadow: 0 0 90px -10px rgba(242, 130, 176, 0.55);
}
.hero-arch::after {
  content: ""; position: absolute; inset: -22px; border: 2px solid var(--cyan); border-radius: 50%; opacity: 0.45;
  animation: spin-slow 26s linear infinite;
}
.hero-portrait-cutout {
  position: relative; z-index: 1; width: 360px; height: auto; display: block;
  transform: rotate(-2deg);
  filter:
    drop-shadow(16px 26px 20px rgba(11, 11, 15, 0.4))
    drop-shadow(-6px 0 30px rgba(197, 55, 113, 0.3))
    drop-shadow(0 0 55px rgba(242, 130, 176, 0.25));
}
.hero-badge {
  position: absolute; bottom: 24px; left: -6%; width: 130px; height: 130px; color: var(--magenta);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-6deg); animation: float-badge 5s ease-in-out infinite; z-index: 2;
}
.hero-badge-shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-badge-text {
  position: relative; color: var(--white); text-align: center; max-width: 66px;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.8rem; line-height: 1.2;
}
@keyframes float-badge { 0%, 100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-10px); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ============ MARQUEE ============ */
.marquee { margin-top: 70px; overflow: hidden; background: var(--teal); padding: 16px 0; }
.marquee-track { display: flex; gap: 14px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-weight: 600; color: var(--magenta); font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ QUIÉN SOY (intro — bloque magenta) ============ */
.quien-soy { position: relative; padding: 100px 0; background: var(--magenta); color: var(--white); overflow: hidden; }
.quien-soy .dot-grid { color: var(--white); }
.quien-soy-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; }
.quien-soy-card .eyebrow { color: var(--ink); }
.quien-soy-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.2; margin: 8px 0 20px; }
.quien-soy-text { font-size: 1.02rem; line-height: 1.65; max-width: 48ch; color: rgba(255,255,255,0.9); }
.portrait-signature { display: inline-block; margin-top: 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; }
.quien-soy-side { border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius); padding: 36px 32px; }
.skills-list { display: flex; flex-direction: column; gap: 18px; }
.skills-list li { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 1.02rem; font-family: var(--font-mono); }
.skills-dot { width: 12px; height: 12px; border-radius: 2px; flex-shrink: 0; transform: rotate(45deg); }
.skills-dot-1 { background: var(--gold); }
.skills-dot-2 { background: var(--cyan); }
.skills-dot-3 { background: var(--mint); }
.skills-dot-4 { background: var(--white); }
.skills-dot-5 { background: var(--gold); }

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

/* ============ TRABAJOS (panel cyan) ============ */
.caso { padding: 0; }
.caso-inner { position: relative; background: var(--cyan); padding: 90px 0; overflow: hidden; }
.caso-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 50px; }
.caso .section-title { margin: 10px 0 0; color: var(--ink); }
.caso .eyebrow { color: var(--ink); }
.trabajos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trabajo-card {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 24px; border: var(--border-ink);
  transition: transform 0.3s ease; color: var(--teal);
}
.trabajo-card:hover { transform: translateY(-8px); }
.device-stack { position: relative; margin-bottom: 44px; }
.device-stack .browser-frame { border-radius: 10px; border: 2px solid var(--ink); overflow: hidden; }
.device-stack .browser-bar span { width: 6px; height: 6px; }
.browser-frame img, .phone-frame img { width: 100%; height: auto; display: block; }
.device-stack .phone-frame {
  position: absolute; width: 92px; right: 12px; bottom: -32px; border-radius: 14px; overflow: hidden;
  border: 4px solid var(--ink); box-shadow: 0 10px 22px -8px rgba(11,11,15,0.4); transform: rotate(-4deg);
}
.trabajo-body { position: relative; color: var(--ink); }
.trabajo-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; background: var(--magenta); color: var(--white); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; font-weight: 600;
}
.trabajo-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 10px; }
.trabajo-body p { color: var(--ink-soft); line-height: 1.55; font-size: 0.92rem; padding-right: 40px; }
.link-circle {
  position: absolute; bottom: -2px; right: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--magenta);
  color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: filter 0.25s ease, transform 0.25s ease;
}
.link-circle:hover { filter: brightness(0.85); transform: rotate(45deg); }

@media (max-width: 900px) {
  .trabajos-grid { grid-template-columns: 1fr; }
  .caso-inner { padding: 70px 0; }
}

/* ============ SERVICIOS + EN NÚMEROS ============ */
.incluye { position: relative; padding: 100px 0; overflow: hidden; background: var(--teal); color: var(--ink); }
.incluye .dot-grid { color: var(--magenta); }
.incluye-inner { display: grid; grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
.incluye-col .section-title { margin: 8px 0 30px; }
.incluye-list { display: flex; flex-direction: column; gap: 20px; }
.incluye-list li { display: flex; align-items: flex-start; gap: 16px; }
.incluye-list strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.98rem; }
.incluye-list small { color: var(--ink-soft); font-size: 0.85rem; }
.icon-dot {
  width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; border: 2px solid currentColor;
}
.icon-dot-1 { color: var(--magenta); }
.icon-dot-2 { color: var(--teal); }
.icon-dot-3 { color: var(--cyan); }
.icon-dot-4 { color: var(--magenta); }
.icon-dot-5 { color: var(--mint); }
.icon-dot-6 { color: var(--teal); }

@media (max-width: 900px) { .incluye-inner { max-width: none; } }

/* ============ SERVICIOS (precios) ============ */
.servicios { position: relative; padding: 110px 0; }
.servicios .section-title { margin: 8px 0 10px; max-width: 24ch; }
.servicios-intro { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 50px; max-width: 46ch; }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; border-radius: var(--radius); padding: 32px 26px; color: var(--white);
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-8px); }
.card-cyan { background: var(--teal); color: var(--ink); box-shadow: 0 30px 60px -22px rgba(252, 245, 190, 0.6); }
.card-magenta { background: var(--magenta); box-shadow: 0 30px 60px -22px rgba(197, 55, 113, 0.55); }
.card-mint { background: var(--mint); color: var(--ink); box-shadow: 0 30px 60px -22px rgba(251, 196, 210, 0.55); }
.card-featured { outline: 3px solid var(--ink); outline-offset: 4px; }
.card-badge {
  position: absolute; top: -14px; right: 24px; background: var(--white); color: var(--ink); font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.05em;
  border: 2px solid var(--ink);
}
.card-index { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; opacity: 0.7; }
.card-title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin: 10px 0 8px; }
.card-for {
  font-size: 0.88rem; line-height: 1.45; margin-bottom: 22px; min-height: 4.4em;
  background: rgba(0,0,0,0.14); border-radius: 12px; padding: 12px 14px;
}
.card-mint .card-for, .card-cyan .card-for { background: rgba(0,0,0,0.08); }
.card-for strong { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; display: block; margin-bottom: 3px; }
.card-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.card-list li { position: relative; padding-left: 24px; font-size: 0.92rem; line-height: 1.4; }
.card-list li::before { content: "→"; position: absolute; left: 0; font-weight: 700; }
.card-foot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dashed rgba(255,255,255,0.35); padding-top: 18px; }
.card-mint .card-foot, .card-cyan .card-foot { border-top-color: rgba(11,11,15,0.25); }
.card-time { font-family: var(--font-mono); font-size: 0.78rem; opacity: 0.75; }
.card-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.servicios-note { margin-top: 34px; text-align: center; color: var(--ink-soft); font-size: 0.88rem; }
.servicios-note a { text-decoration: underline; font-weight: 600; color: var(--ink); }

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

/* ============ PROCESO (banda dorada) ============ */
.proceso-visual { position: relative; padding: 100px 0; background: var(--mint); overflow: hidden; }
.proceso-visual .dot-grid { color: var(--ink); }
.proceso-visual .eyebrow { color: var(--ink); }
.proceso-visual .section-title { margin: 8px 0 54px; }
.proceso-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.proceso-track::before {
  content: ""; position: absolute; top: 18px; left: 6%; right: 6%; height: 2px; background: var(--magenta); opacity: 0.35;
  background-image: linear-gradient(90deg, var(--magenta) 60%, transparent 0); background-size: 14px 2px;
}
.proceso-step { position: relative; border-radius: 20px; padding: 26px 20px; background: var(--white); border: var(--border-ink); }
.proceso-step-offset { margin-top: 30px; }
.proceso-step-dark { background: var(--blush); color: var(--ink); }
.proceso-num {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--magenta); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 16px;
}
.proceso-step-dark .proceso-num { background: var(--magenta); }
.proceso-step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 10px; }
.proceso-step p { font-size: 0.88rem; line-height: 1.5; }
.proceso-step-dark p { color: var(--ink-soft); }

@media (max-width: 900px) {
  .proceso-track { grid-template-columns: 1fr 1fr; }
  .proceso-track::before { display: none; }
  .proceso-step-offset { margin-top: 0; }
}
@media (max-width: 560px) { .proceso-track { grid-template-columns: 1fr; } }

/* ============ TESTIMONIOS ============ */
.testimonios { padding: 100px 0; }
.testimonios .section-title { margin: 8px 0 6px; }
.testimonios-note { font-size: 0.8rem; color: var(--ink-soft); font-style: italic; margin-bottom: 40px; }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { position: relative; background: var(--paper); border-radius: var(--radius); padding: 34px 26px 28px; border: var(--border-ink); overflow: hidden; }
.testi-quote {
  position: absolute; top: -10px; right: 18px; font-family: var(--font-display); font-size: 4.4rem; font-weight: 700;
  color: rgba(197, 55, 113, 0.12); line-height: 1;
}
.testi-card blockquote { position: relative; margin: 0 0 22px; font-size: 0.98rem; line-height: 1.55; }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-mono); font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
  border: 2px solid var(--ink); color: var(--white);
}
.testi-avatar-magenta { background: var(--magenta); }
.testi-avatar-cyan { background: var(--teal); color: var(--ink); }
.testi-avatar-mint { background: var(--mint); color: var(--ink); }
.testi-who { display: flex; flex-direction: column; font-size: 0.85rem; }
.testi-who small { color: var(--ink-soft); }

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

/* ============ CONTACTO (banda negra) ============ */
.contacto { position: relative; padding: 100px 0 130px; overflow: hidden; background: var(--blush); color: var(--ink); }
.contacto .dot-grid { color: var(--magenta); }
.contacto .section-title { margin: 8px 0 10px; }
.contacto-sub { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 34px; }
.contacto-cta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; }
.whatsapp-cta {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.7); padding: 16px 24px; border-radius: 18px;
  border: 2px solid rgba(11,11,15,0.15); transition: transform 0.25s ease, background 0.25s ease;
}
.whatsapp-cta:hover { transform: translateY(-4px); background: var(--white); }
.whatsapp-icon { width: 44px; height: 44px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.email-icon { background: var(--magenta); }
.whatsapp-cta strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; }
.whatsapp-cta small { color: var(--ink-soft); }

.form-wrap { max-width: 640px; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 40px; }
.form-row { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-family: var(--font-mono); font-size: 0.84rem; font-weight: 600; }
.form-row label small { color: var(--ink-soft); font-weight: 400; }
.form-row input, .form-row textarea {
  border: 2px solid rgba(11,11,15,0.15); border-radius: 12px; padding: 13px 16px; font: inherit; background: var(--paper);
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--magenta); outline: none; }
.btn-submit { width: 100%; justify-content: center; border: none; }
.form-thanks { text-align: center; font-size: 1.05rem; }

@media (max-width: 640px) { .form-wrap { padding: 26px; } .contacto-cta-row { flex-direction: column; } }

/* ============ FOOTER ============ */
.footer { background: var(--teal); color: var(--ink); padding: 44px 0; border-top: 2px solid var(--ink); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 22px; font-family: var(--font-mono); font-weight: 500; font-size: 0.85rem; }
.footer-links a:hover { color: var(--magenta); }
.footer-copy { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); width: 100%; text-align: center; margin-top: 6px; }
@media (min-width: 700px) { .footer-copy { width: auto; text-align: right; margin-top: 0; } }

/* ============ WHATSAPP FLOTANTE ============ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 62px; height: 62px; border-radius: 50%; background: #25D366;
  color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 90;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,0.6); transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float-ring {
  position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25D366; opacity: 0.6;
  animation: ring-pulse 2.2s ease-out infinite;
}
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }

@media (max-width: 560px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* ============ INSTAGRAM FLOTANTE ============ */
.instagram-float {
  position: fixed; bottom: 100px; right: 26px; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: var(--white); display: flex; align-items: center; justify-content: center; z-index: 90;
  box-shadow: 0 12px 28px -8px rgba(238,42,123,0.6); transition: transform 0.25s ease;
}
.instagram-float:hover { transform: scale(1.08); }

@media (max-width: 560px) {
  .instagram-float { width: 54px; height: 54px; bottom: 82px; right: 18px; }
}

/* ============ RESPONSIVE HERO/GLOBAL ============ */
@media (max-width: 980px) {
  .hero-inner { display: block; position: relative; }
  .hero-visual { max-width: none; margin: 0; padding: 0 0 20px; min-height: 78vh; align-items: flex-start; }
  .hero-arch { top: 6%; right: 6%; }
  .hero-portrait-cutout { width: min(78vw, 380px); margin: 0 auto; }
  .hero-badge { display: none; }
  .hero-copy {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
    padding: 120px 24px 34px;
    background: linear-gradient(180deg, transparent 0%, rgba(197,55,113,0.55) 30%, rgba(197,55,113,0.9) 60%, var(--magenta) 100%);
  }
  .hero-copy .eyebrow { color: var(--blush); }
  .hero-copy .eyebrow::before { background: var(--blush); }
  .hero-copy .hero-title { color: var(--white); }
  .hero-copy .script-accent { color: var(--blush); }
  .hero-copy .hero-sub { color: rgba(255,255,255,0.82); }
  .hero-copy .btn-text { color: var(--white); }
  .hero-copy .btn-circle { border-color: var(--white); }
  .hero { padding-top: 100px; }
  .shape-star { display: none; }
}
@media (max-width: 620px) {
  .hero-title { max-width: none; }
  .caso-head { align-items: flex-start; }
}
