/*
Theme Name: MGV
Theme URI: https://mgvtracks.com
Author: MGV
Description: Tema custom para MGV — Diseño & Desarrollo
Version: 1.0
*/

/* ─── RESET & BASE ──────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; font-size: 16px; }

body {
  background: #080808;
  color: #e8e2d5;
  font-family: 'DM Mono', monospace;
  overflow-x: hidden;
  cursor: none;
}

/* ─── SCROLL PROGRESS ──────────────────── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(232,226,213,.05);
  z-index: 200;
  opacity: 0;
  transition: opacity .5s ease;
}

#scrollProgressFill {
  height: 100%;
  background: #1565C0;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}


/* ─── CURSOR ────────────────────────────── */
#cursor {
  position: fixed;
  z-index: 9999;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8e2d5;
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .5s cubic-bezier(.23,1,.32,1),
              height .5s cubic-bezier(.23,1,.32,1);
}
#cursor.big { width: 60px; height: 60px; }

/* ─── NAV ───────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3.5rem;
  opacity: 0;
  transition: padding .4s, background .4s;
}
#nav.scrolled {
  padding: 1.2rem 3.5rem;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,226,213,.06);
}
.nav-brand {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 3px;
  color: #e8e2d5;
  text-decoration: none;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.3);
  text-decoration: none;
  transition: color .3s;
}
.nav-links a:hover { color: #e8e2d5; }

#nav-hamburger {
  display: none;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}
#nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #e8e2d5;
  transition: transform .35s ease, opacity .35s ease;
}
body.menu-open #nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open #nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open #nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(8,8,8,.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
#nav-overlay a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #e8e2d5;
  text-decoration: none;
  letter-spacing: -1px;
  transition: color .3s;
}
#nav-overlay a:hover { color: #1565C0; }
body.menu-open #nav-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

/* ─── HERO ──────────────────────────────── */
#mgv {
  position: relative;
  z-index: 1;
}

#hero {
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 3.5rem 3.5rem;
  overflow: hidden;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(21,101,192,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(21,101,192,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(30,30,50,0.8) 0%, transparent 100%),
    #080808;
}

.hero-bg-word {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(14rem, 38vw, 36rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,226,213,.055);
  white-space: nowrap;
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
  will-change: transform;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}
#hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(232,226,213,.03);
  top: 66%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  position: relative;
  z-index: 2;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232,226,213,.4);
  margin-bottom: 2rem;
  padding-top: 6rem;
  opacity: 0;
}

.hero-line {
  overflow: hidden;
  line-height: .85;
}
.hero-headline-d {
  max-width: 100%;
}
.hl {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  letter-spacing: -2px;
  color: #e8e2d5;
  transform: translateY(110%);
}
.hero-line.italic .hl {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 6rem);
  color: rgba(232,226,213,.4);
  letter-spacing: .5px;
  -webkit-text-stroke: 0;
}

#hl2 { color: #1565C0; }

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,226,213,.07);
  opacity: 0;
}
.hero-sub {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .5px;
  color: rgba(232,226,213,.25);
}
.hero-cta {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #080808;
  background: #e8e2d5;
  padding: .9rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .3s;
  white-space: nowrap;
}
.hero-cta:hover { background: #fff; }

/* ─── HERO — MOBILE CONTENT (desktop: hidden) ── */
.hero-content-mobile {
  display: none;
  position: relative;
  z-index: 2;
}

/* ─── REVEAL UTILITIES ──────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
}

/* ─── SERVICIOS ─────────────────────────── */
#servicios {
  background: linear-gradient(to bottom, rgba(30, 30, 50, 1) 0%, #0a0d14 50%, #000000 100%);
  padding: 10rem 3.5rem;
  position: relative;
  z-index: 1;
}

.servicios-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.servicios-header {
  margin-bottom: 5rem;
}

.servicios-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.25);
  margin-bottom: 1.5rem;
}

.servicios-titulo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.375rem);
  line-height: .9;
  letter-spacing: -2px;
  color: #e8e2d5;
}

.servicios-list {
  border-top: 1px solid rgba(232,226,213,.08);
}

.servicio-row {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 2.8rem 0;
  border-bottom: 1px solid rgba(232,226,213,.08);
  transition: transform .4s ease, border-bottom-color .4s ease;
}

.servicio-row:hover {
  transform: translateX(12px);
  border-bottom-color: #1565C0;
}

.servicio-num {
  position: relative;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: .8rem;
  color: #1565C0;
  letter-spacing: 1px;
  transition: color .4s ease;
}

.servicio-num::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1565C0;
  opacity: 0;
  transition: opacity .4s ease;
}

.servicio-row:hover .servicio-num { color: #e8e2d5; }
.servicio-row:hover .servicio-num::before { opacity: 1; }

.servicio-nombre {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1.2;
  color: #e8e2d5;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}

.servicio-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,226,213,.75);
  max-width: 52ch;
}

.servicio-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.35);
  text-decoration: none;
  transition: color .3s;
  white-space: nowrap;
}
.servicio-cta:hover { color: #e8e2d5; }

.servicio-arrow {
  color: #1565C0;
  font-size: 14px;
  display: inline-block;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
}
.servicio-cta:hover .servicio-arrow { transform: translateX(5px); }

/* ─── CASO ──────────────────────────────── */
#caso {
  background: #000000;
  padding: 10rem 3.5rem;
  position: relative;
  z-index: 1;
}

.caso-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.caso-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.25);
  margin-bottom: 1.5rem;
}

.caso-titulo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 4.675rem);
  line-height: .9;
  letter-spacing: -2px;
  color: #e8e2d5;
  margin-bottom: 2.5rem;
}

.caso-titulo em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(232,226,213,.4);
}

.caso-empresa {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1565C0;
  margin-bottom: 1.5rem;
}

.caso-desc {
  font-size: 14px;
  line-height: 2.1;
  color: rgba(232,226,213,.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.caso-desc strong {
  color: rgba(232,226,213,.9);
  font-weight: 400;
}

.caso-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,226,213,.2);
  border: 1px solid rgba(232,226,213,.1);
  padding: .6rem 1.2rem;
  border-radius: 2px;
}

.caso-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 4rem;
  border-left: 1px solid rgba(232,226,213,.07);
}

.caso-metrica {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.metrica-valor {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: #1565C0;
  line-height: 1;
  letter-spacing: -2px;
}

.metrica-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,226,213,.25);
}

.metrica-frase {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(232,226,213,.65);
  max-width: 340px;
  margin-top: .6rem;
}

/* ─── PROCESO ───────────────────────────── */
#proceso {
  background: linear-gradient(to bottom, #000000 0%, #1565C0 100%);
  min-height: 100vh;
  padding: 10rem 3.5rem;
  position: relative;
  z-index: 1;
}

.proceso-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.proceso-header {
  margin-bottom: 6rem;
}

.proceso-label {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.25);
  margin-bottom: 1.5rem;
}

.proceso-titulo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 5.5vw, 4.675rem);
  line-height: .9;
  letter-spacing: -2px;
  color: #e8e2d5;
}

.proceso-titulo em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(232,226,213,.4);
}

.proceso-pasos {
  display: flex;
  align-items: flex-start;
}

.proceso-paso {
  flex: 1;
}

.proceso-conector {
  width: 4rem;
  height: 1px;
  background: rgba(232,226,213,.1);
  margin-top: 1.15rem;
  flex-shrink: 0;
}

.paso-num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  color: #1565C0;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.paso-nombre {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  color: #e8e2d5;
  letter-spacing: -.5px;
  margin-bottom: .8rem;
  line-height: 1.2;
}

.paso-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(232,226,213,.55);
  max-width: 24ch;
}

/* ─── CONTACTO ──────────────────────────── */
#contacto {
  background: #e8e2d5;
  padding: 10rem 3.5rem;
  position: relative;
  z-index: 1;
}

.contacto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.contacto-header {
  margin-bottom: 5rem;
}

.contacto-titulo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 9vw, 7.65rem);
  line-height: .88;
  letter-spacing: -3px;
  color: #080808;
}

.contacto-sub {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: rgba(8,8,8,.4);
  margin-top: 1.5rem;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.form-field label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(8,8,8,.7);
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(8,8,8,.15);
  padding: .9rem 0;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #080808;
  outline: none;
  transition: border-color .3s;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(8,8,8,.2); }

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: #080808; }

.form-submit {
  align-self: flex-start;
  background: #1565C0;
  color: #fff;
  border: none;
  padding: 1.1rem 2.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: none;
  border-radius: 2px;
  transition: background .3s;
  margin-top: .5rem;
}
.form-submit:hover { background: #1976D2; }

.contacto-alt {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(8,8,8,.1);
}

.contacto-alt-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(8,8,8,.35);
  text-decoration: none;
  transition: color .3s;
}
.contacto-alt-link:hover { color: #080808; }

.alt-arrow {
  font-size: 13px;
  display: inline-block;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
}
.contacto-alt-link:hover .alt-arrow { transform: translateX(4px); }

/* ─── FOOTER ─────────────────────────────── */
#footer {
  background: #000000;
  border-top: 1px solid rgba(232,226,213,.06);
  padding: 6rem 3.5rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-col-title {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,226,213,.3);
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -1px;
  color: #e8e2d5;
  line-height: 1;
  margin-bottom: 1rem;
}


.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(232,226,213,.3);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(232,226,213,.6);
  text-decoration: none;
  transition: color .3s;
}
.footer-nav a:hover { color: #1565C0; }

.footer-email {
  display: block;
  font-size: 14px;
  letter-spacing: -.2px;
  color: rgba(232,226,213,.75);
  text-decoration: none;
  transition: color .3s;
  margin-bottom: 1rem;
}
.footer-email:hover { color: #e8e2d5; }

.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(232,226,213,.6);
  text-decoration: none;
  transition: color .3s;
  margin-bottom: 1.4rem;
}
.footer-link:hover { color: #1565C0; }

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,226,213,.3);
  text-decoration: none;
  transition: color .3s;
}
.footer-social a:hover { color: #e8e2d5; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,226,213,.06);
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(232,226,213,.2);
}

.footer-sign {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: rgba(232,226,213,.4);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  #hero { justify-content: flex-end; }
  .hero-content-mobile { display: none; }
  .hero-content { display: flex; flex-direction: column; }
  .hero-content .hero-headline-d { text-align: left; }
  .hl { font-size: clamp(3.5rem, 11vw, 5.5rem); }
}

@media (max-width: 960px) {
#hero { padding: 0 1.8rem 2rem; }
  #nav { padding: 1.5rem 1.8rem; }
  #nav.scrolled { padding: 1rem 1.8rem; }

  #servicios,
  #caso,
  #proceso,
  #contacto { padding: 7rem 1.8rem; }

  .servicio-row {
    grid-template-columns: 3.5rem 1fr;
    gap: 1.5rem 2rem;
  }
  .servicio-cta { grid-column: 2; margin-top: .3rem; }

  .caso-inner { grid-template-columns: 1fr; gap: 4rem; }
  .caso-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(232,226,213,.07);
    padding-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .proceso-pasos { flex-direction: column; }
  .proceso-conector { width: 1px; height: 2rem; margin: .4rem 0; }
  .paso-desc { max-width: none; }

  .form-row { grid-template-columns: 1fr; }

  #footer { padding: 4rem 1.8rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── WHATSAPP FLOAT ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .3s cubic-bezier(.23,1,.32,1), box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  body { cursor: auto; }
  #cursor { display: none; }

  /* Nav */
  #nav { padding: 1.4rem 1.4rem; }
  #nav.scrolled { padding: 1rem 1.4rem; }
  .nav-links { display: none; }
  #nav-hamburger { display: flex; }

  /* Hero */
  #hero {
    height: 100svh;
    padding: 0 1.2rem 2rem;
    justify-content: flex-end;
    overflow: hidden;
  }
  .hero-bg-word { display: none; font-size: clamp(8rem, 38vw, 14rem); }
  .hero-eyebrow { padding-top: 5rem; margin-bottom: 0; }
  .hero-content { display: flex; flex-direction: column; }
  .hero-content-mobile { display: none; }
  .hl { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hl-mob {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 15vw;
    line-height: 0.88;
    letter-spacing: -1px;
    color: #e8e2d5;
    display: block;
    width: 100%;
  }
  .hl-mob-blue { color: #1565C0; }
  .hl-mob-italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 12.5vw;
    color: rgba(232,226,213,0.4);
    line-height: 0.1;
  }
  .hero-content-mobile .hl-mob:nth-child(1) { text-align: left; }
  .hero-content-mobile .hl-mob:nth-child(2) { text-align: center; }
  .hero-content-mobile .hl-mob:nth-child(3) { text-align: right; }
  .hero-content-mobile .hl-mob:nth-child(4) { text-align: left; }
  .hero-content-mobile .hl-mob:nth-child(5) { text-align: center; }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-top: 0;
    padding-top: 1.5rem;
  }
  .hero-cta {
    align-self: stretch;
    text-align: center;
    background: #1565C0;
    color: #fff;
  }

  /* Servicios */
  #servicios { padding: 5rem 1.4rem; }
  .servicio-row { grid-template-columns: 2.5rem 1fr; gap: 1rem 1.2rem; }

  /* Caso */
  #caso { padding: 5rem 1.4rem; }
  .caso-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Proceso */
  #proceso { padding: 5rem 1.4rem; }
  .proceso-conector { display: none; }

  /* Contacto */
  #contacto { padding: 5rem 1.4rem; }
  .contacto-titulo { font-size: clamp(2rem, 12vw, 2.55rem); }

  /* Footer */
  #footer { padding: 3rem 1.4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    left: auto;
    width: 48px;
    height: 48px;
    transform: translateZ(0);
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
