:root{
  --bg0: #0b141d;
  --bg1: #0f1720;
  --bg2: #141f2b;
  --card: #1c2a38;

  --text: #e6edf3;
  --muted: #9fb3c8;

  --accent: #3bb4c6;   /* turquesa frío */
  --accent2:#2a92a3;

  --border: rgba(255,255,255,.08);
  --shadow: 0 26px 70px rgba(0,0,0,.30), 0 10px 26px rgba(0,0,0,.20);
  --radius: 16px;
}

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

html, body{ scroll-behavior:smooth; }

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
  background: var(--bg1);
  color: var(--text);
  line-height:1.5;
}

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

.container{
  width: min(1180px, calc(100% - 48px));
  margin:0 auto;
}

.eyebrow-m{
  display:inline-block;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--accent);
  font-weight:800;
}
.eyebrow-m--dark{ color: rgba(255,255,255,.86); }

.h2-m{
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
  font-weight: 900;
}

.muted-m{
  color: var(--muted);
  max-width: 62ch;
}

/* ================= HEADER ================= */
.m-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: 74px;
  z-index: 50;
  background: rgba(10,16,24,.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.m-header__inner{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.m-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.m-brand img{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
.m-brand__text{
  display:flex;
  flex-direction:column;
  line-height: 1.1;
}
.m-brand__text strong{ font-weight: 900; font-size: 13px; letter-spacing:.06em; }
.m-brand__text span{ font-size: 12px; color: rgba(230,237,243,.72); }

.m-nav{
  display:flex;
  align-items:center;
  gap: 14px;
  color: rgba(230,237,243,.86);
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 11px;
  text-transform: uppercase;
}
.m-nav a{
  padding: 10px 10px;
  border-radius: 10px;
  opacity: .92;
  transition: background .12s ease, opacity .12s ease, border-color .12s ease;
}
.m-nav a:hover{ background: rgba(255,255,255,.08); opacity: 1; }
.m-nav__cta{
  border: 1px solid rgba(255,255,255,.18);
}

/* ================= BUTTONS ================= */
.btn-m{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--accent);
  color: #071016;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.14);
  transition: transform .12s ease, filter .12s ease, opacity .12s ease;
}
.btn-m:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.btn-m:active{ transform: translateY(0px); opacity: .92; }

.btn-m--ghost{
  background: transparent;
  color: rgba(230,237,243,.92);
  border: 1px solid rgba(255,255,255,.26);
}

/* ================= HERO ================= */
.hero-m{
  padding: 140px 0 120px;
  position: relative;
  min-height: 86vh;
  display:flex;
  align-items:center;
  padding-top: calc(140px + 74px); /* header */
}




.hero-m__bg{
  position:absolute;
  inset:0;
  background:
    url("/img/foto_hero_m.jpeg") center / cover no-repeat;
  filter: saturate(.98) contrast(1.02);
}
.hero-m__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 30% 30%, rgba(59,180,198,.16), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(7,16,22,.56), rgba(7,16,22,.88));
}
.hero-m__content{ position: relative; }

.hero-m h1{
  margin: 16px 0 18px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 950;

  max-width: none;         /* <- clave */
  width: 100%;
}

.hero-m__lead{
  color: rgba(230,237,243,.86);
  max-width: 70ch;
  margin-bottom: 26px;
}
.hero-m__actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-m__proof{
  margin-top: 22px;
}
.proof-pill{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,16,24,.34);
  color: rgba(230,237,243,.78);
  font-size: 12px;
}
.dot{
  width:8px;height:8px;border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(59,180,198,.12);
}

/* ================= SPLIT ================= */
.split-m{
  background: var(--bg1);
  padding: 0 0 80px;
}
.split-m__box{
  transform: translateY(-64px);
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.08);
}
.split-m__left{
  padding: 56px 52px;
  background:
    linear-gradient(180deg, rgba(59,180,198,.22), rgba(20,31,43,.92)),
    linear-gradient(180deg, #162536, #101c28);
}
.split-m__left h2{
  margin: 12px 0 12px;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 950;
}
.split-m__left p{ color: rgba(230,237,243,.78); max-width: 54ch; }

.split-m__mini{
  display:grid;
  gap: 12px;
  margin-top: 18px;
}
.mini-kpi{
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,16,24,.32);
}
.mini-kpi strong{ display:block; font-size: 13px; letter-spacing:.02em; }
.mini-kpi span{ display:block; color: rgba(230,237,243,.72); font-size: 13px; margin-top: 4px; }

.split-m__right{
  padding: 56px 52px;
  background: #0f1a26;
}
.split-m__right h3{
  margin: 12px 0 12px;
  font-size: 38px;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 950;
}
.split-m__right p{ color: rgba(230,237,243,.76); max-width: 54ch; }

.split-m__cards{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(230,237,243,.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ================= MEDIA FRAME ================= */
.media-frame{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.media-frame img{
  border-radius: 14px;
  width: 100%;
  height: auto;
  display:block;
}

/* ================= PULSO ================= */
.pulso-m{
  padding: 90px 0 120px;
  background: var(--bg2);
}
.pulso-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items:center;
}
.bullets-m{
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(230,237,243,.80);
}
.bullets-m li{ margin: 8px 0; }

.pulso-actions{ margin-top: 22px; display:flex; gap: 12px; flex-wrap: wrap; }
.media-note{
  margin-top: 10px;
  color: rgba(230,237,243,.62);
  font-size: 12px;
}

/* ================= STEPS ================= */
.steps-m{
  padding: 110px 0 120px;
  background: var(--bg1);
}
.steps-grid-m{
  margin-top: 36px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card-m{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  overflow:hidden;
}
.step-card-m img{
  width:100%;
  height: 240px;
  object-fit: cover;
}
.step-card-m h3{
  padding: 16px 16px 8px;
  font-size: 16px;
  font-weight: 950;
}
.step-card-m p{
  padding: 0 16px 18px;
  color: rgba(230,237,243,.72);
  font-size: 14px;
}

/* ================= REALIDAD ================= */
.realidad-m{
  padding: 110px 0 120px;
  background: var(--bg0);
}
.realidad-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.card-m{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px 18px;
}
.card-m h3{ font-size: 15px; font-weight: 950; margin-bottom: 8px; }
.card-m p{ color: rgba(230,237,243,.70); font-size: 13px; line-height: 1.55; }

/* ================= IMPLEMENTACIÓN ================= */
.impl-m{
  padding: 110px 0 120px;
  background: var(--bg2);
}
.impl-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items:center;
}
.impl-list{ margin-top: 18px; display:grid; gap: 12px; }
.impl-item{
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(10,16,24,.26);
}
.impl-item strong{ display:block; font-size: 13px; font-weight: 950; }
.impl-item span{ display:block; margin-top: 4px; color: rgba(230,237,243,.72); font-size: 13px; }

/* ================= CTA ================= */
.cta-m{
  padding: 110px 0;
  background: linear-gradient(180deg, rgba(59,180,198,.10), rgba(15,23,32,1));
}
.cta-box{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 42px 34px;
  background: rgba(10,16,24,.30);
  text-align:center;
  box-shadow: var(--shadow);
}
.cta-box h2{
  font-size: 34px;
  line-height:1.1;
  letter-spacing:-0.02em;
  font-weight: 950;
}
.cta-box p{
  margin: 12px auto 18px;
  max-width: 70ch;
  color: rgba(230,237,243,.74);
}
.cta-actions{ display:flex; justify-content:center; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.cta-note{ display:block; margin-top: 14px; font-size: 12px; color: rgba(230,237,243,.55); }

/* ================= FOOTER ================= */
.m-footer{
  background: #071016;
  border-top: 1px solid rgba(255,255,255,.08);
}
.m-footer__inner{
  padding: 46px 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.m-footer__brand img{ height: 54px; width:auto; margin-bottom: 10px; }
.m-footer__brand p{ color: rgba(230,237,243,.60); max-width: 46ch; }
.m-footer__links{
  display:flex;
  justify-content:flex-end;
  gap: 18px;
  color: rgba(230,237,243,.70);
  font-weight: 800;
}
.m-footer__links a:hover{ color:#fff; }
.m-footer__bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  text-align:center;
  font-size: 12px;
  color: rgba(230,237,243,.48);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 980px){
  .m-nav{ display:none; }
  .split-m__box{ grid-template-columns:1fr; transform: translateY(-48px); }
  .pulso-grid, .impl-grid{ grid-template-columns:1fr; gap: 28px; }
  .realidad-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps-grid-m{ grid-template-columns:1fr; }
}
@media(max-width: 640px){
  .container{ width: calc(100% - 28px); }
  .hero-m{ min-height: 78vh; padding-top: calc(110px + 74px); padding-bottom: 90px; }
  .h2-m{ font-size: 34px; }
  .split-m__left, .split-m__right{ padding: 34px 24px; }
  .realidad-grid{ grid-template-columns:1fr; }
  .m-footer__inner{ grid-template-columns:1fr; text-align:center; }
  .m-footer__links{ justify-content:center; flex-wrap:wrap; }
}


/* =========================
   FOOTER POWER — JELDU
========================= */

.j-footerX{
  position: relative;
  margin-top: 120px;
  background: #04080b;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}

/* glow sutil + pulso radial MUY controlado */
.j-footerX::before{
  content:"";
  position:absolute;
  inset:-2px;
  pointer-events:none;
  background:
    radial-gradient(680px 280px at 18% 18%, rgba(222,214,200,.10), transparent 62%),
    radial-gradient(460px 220px at 28% 65%, rgba(222,214,200,.06), transparent 70%),
    radial-gradient(760px 280px at 82% 22%, rgba(255,255,255,.05), transparent 64%);
  opacity: .95;
}

/* línea premium arriba */
.j-footerX::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(222,214,200,.24), transparent);
  pointer-events:none;
}

.j-footerX__inner{
  position: relative;
  padding: 64px 0 44px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 44px;
}

/* Marca */
.j-footerX__brand{
  display:flex;
  flex-direction: column;   /* 🔥 cambia a vertical */
  align-items:flex-start;
  gap: 18px;
  min-width: 360px;
}

.j-footerX__logo{
  height: 46px;
  width:auto;
  opacity: .92;
  flex: 0 0 auto;
}

.j-footerX__brandText{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.j-footerX__tagline{
  margin:0;
  line-height: 1.05;
}

.j-footerX__tagline strong{
  display:block;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.94);
  font-weight: 950;
}

.j-footerX__tagline span{
  display:block;
  font-size: 14px;
  color: rgba(255,255,255,.70);
  letter-spacing: .01em;
  margin-top: 6px;
}

/* chips */
.j-footerX__meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.j-footerX__chip{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(222,214,200,.18);
  background: rgba(222,214,200,.06);
  color: rgba(255,255,255,.72);
}

/* nav */
.j-footerX__nav{
  display:flex;
  gap: 54px;
}

.j-footerX__col{
  display:flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}

.j-footerX__title{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 10px;
}

.j-footerX__col a{
  color: rgba(255,255,255,.76);
  font-size: 14px;
  text-decoration:none;
  padding: 4px 0;
}

.j-footerX__col a:hover{
  color: rgba(222,214,200,.95);
}

.j-footerX__hint{
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.52);
  line-height: 1.45;
}

/* bottom */
.j-footerX__bottom{
  position: relative;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.22);
  padding: 16px 0;
}

.j-footerX__bottomInner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(255,255,255,.46);
  font-size: 13px;
}

.j-footerX__sep{ opacity: .55; }

/* responsive */
@media (max-width: 980px){
  .j-footerX__inner{
    flex-direction: column;
    gap: 26px;
    padding: 48px 0 34px;
  }
  .j-footerX__brand{
    min-width: auto;
  }
  .j-footerX__nav{
    width: 100%;
    gap: 34px;
    flex-wrap: wrap;
  }
  .j-footerX__bottomInner{
    flex-direction: column;
    gap: 6px;
  }
}
