/* ============================================
   JELDU HOME - V3.1 (COLOR TUNED)
   Ajuste estratégico de color: menos "industrial",
   más premium + humano, sin perder "Pulso".
   Compatible con verticales existentes.
   Basado en style3.css original.
   ============================================ */

:root {
  /* Base (se mantiene oscura, pero un pelín más "limpia" y premium) */
  --bg0: #0b131a;  /* antes: #0b141d */
  --bg1: #0f1720;  /* se mantiene */
  --bg2: #14202b;  /* antes: #141f2b */
  --card: #1b2834; /* antes: #1c2a38 */

  /* Tipografía */
  --text: #e7eef5;
  --muted: #a7bbcf; /* un toque más claro para legibilidad */

  /* Acento (menos neón, más "turquesa premium") */
  --accent: #2fb3c3;   /* antes: #3bb4c6 */
  --accent2: #1f93a6;  /* antes: #2a92a3 */

  /* Neutros cálidos sutiles (para bajar sensación "industrial") */
  --warm-1: rgba(244, 238, 226, .10);
  --warm-2: rgba(244, 238, 226, .06);
  --warm-3: rgba(244, 238, 226, .04);

  /* Bordes y sombras */
  --border: rgba(255,255,255,.085);
  --border-strong: rgba(255,255,255,.12);
  --shadow: 0 26px 70px rgba(0,0,0,.32), 0 10px 26px rgba(0,0,0,.22);
  --radius: 16px;

  /* Espaciado aumentado */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 140px;

  /* Verde status (menos “radioactivo”) */
  --status-green: #35d07f; /* antes: #00ff41 */

  /* Focus ring accesible */
  --focus: rgba(47,179,195,.35);
}

/* ================= RESET ================= */
*{
  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;
}

:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px var(--focus);
  border-radius: 10px;
}

/* ================= CONTAINER ================= */
.container{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3{
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1{
  font-size: clamp(40px, 5vw, 64px);
  margin: 16px 0 18px;
}

h2{
  font-size: clamp(36px, 4.5vw, 52px);
  margin: 12px 0 14px;
}

h3{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

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

.highlight{
  color: var(--accent);
}

/* Eyebrows - igual que verticales */
.eyebrow{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.eyebrow--dark{
  color: rgba(255,255,255,.86);
}

/* ================= SECTION INTRO ================= */
.section-intro{
  margin-bottom: var(--space-2xl);
}

.section-intro--center{
  text-align: center;
}

.section-intro h2{
  max-width: 900px;
}

.section-intro--center h2{
  margin-left: auto;
  margin-right: auto;
}

.section-intro p{
  margin-top: var(--space-md);
}

/* ================= BUTTONS ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;

  /* más premium: un gradient casi imperceptible */
  background: linear-gradient(180deg, rgba(47,179,195,1), rgba(31,147,166,1));
  color: #061018;

  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(0,0,0,.14);
  transition: transform .12s ease, filter .12s ease, opacity .12s ease, box-shadow .12s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.btn:active{
  transform: translateY(0px);
  opacity: .93;
}

.btn--ghost{
  background: rgba(255,255,255,.02);
  color: rgba(230,237,243,.92);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: none;
}

.btn--ghost:hover{
  background: rgba(255,255,255,.04);
}

.btn--large{
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
}

/* ================= LINKS ================= */
.link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  transition: transform .12s ease, filter .12s ease;
}

.link-arrow::after{
  content: '→';
  transition: transform .12s ease;
}

.link-arrow:hover{
  transform: translateX(2px);
  filter: brightness(1.05);
}

.link-arrow:hover::after{
  transform: translateX(4px);
}

/* ================= HEADER ================= */
.header{
  position: fixed;
  inset: 0 0 auto 0;
  height: 74px;
  z-index: 50;

  /* menos “vidrio frío”, más premium */
  background: rgba(10,16,24,.58);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header__inner{
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img{
  height: 44px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}

.nav{
  margin-left: auto;
  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;
}

.nav a{
  padding: 10px 10px;
  border-radius: 10px;
  opacity: .92;
  transition: background .12s ease, opacity .12s ease;
}

.nav a:hover{
  background: rgba(255,255,255,.08);
  opacity: 1;
}

.nav__cta{
  border: 1px solid rgba(255,255,255,.18);
}

/* ================= HERO ================= */
.hero{
  padding: 140px 0 var(--space-3xl);
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(140px + 74px);
}

.hero__bg{
  position: absolute;
  inset: 0;
  background: url("/img/operaciones_jeldu.jpg") center / cover no-repeat;

  /* más “real” y menos agresivo */
  filter: saturate(.96) contrast(1.02) brightness(.98);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    /* toque cálido sutil para bajar sensación industrial */
    radial-gradient(760px 420px at 26% 28%, rgba(244,238,226,.10), rgba(0,0,0,0)),
    radial-gradient(900px 520px at 30% 30%, rgba(47,179,195,.14), rgba(0,0,0,0)),
    linear-gradient(180deg, rgba(7,16,22,.56), rgba(7,16,22,.90));
}

.hero__content{
  position: relative;
  max-width: 900px;
}

.hero h1{
  max-width: 900px;
}

.hero__lead{
  color: rgba(230,237,243,.86);
  max-width: 70ch;
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.6;
}

.hero__actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__proof{
  margin-top: 24px;
}

.proof-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  /* menos frío */
  background: rgba(10,16,24,.28);
  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(47,179,195,.12);
  animation: pulse 2s ease infinite;
}

@keyframes pulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0.45; }
}

/* ================= PROBLEM SECTION ================= */
.problem{
  background: var(--bg1);
  padding: 0 0 var(--space-3xl);
}

.problem__box{
  transform: translateY(-64px);
  background: linear-gradient(180deg, rgba(11,19,26,1), rgba(9,14,20,1));
  border-radius: 22px;
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.problem__header{
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.problem__header h2{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.problem-card{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: var(--space-lg);
  transition: all .12s ease;
}

.problem-card:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(47,179,195,.28);
  transform: translateY(-4px);
}

.problem-card__icon{
  font-size: 40px;
  margin-bottom: var(--space-md);
}

.problem-card h3{
  font-size: 18px;
  margin-bottom: var(--space-sm);
}

.problem-card p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.problem__statement{
  text-align: center;
  padding: var(--space-lg);

  /* statement más “premium” */
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(244,238,226,.08), transparent 60%),
    linear-gradient(135deg, rgba(47,179,195,.11), rgba(31,147,166,.07));

  border: 1px solid rgba(47,179,195,.18);
  border-radius: 14px;
}

.problem__statement p{
  font-size: 20px;
  font-weight: 900;
  color: rgba(230,237,243,.95);
  margin: 0;
}

/* ================= PULSO SECTION ================= */
.pulso{
  background: linear-gradient(180deg, rgba(20,32,43,1), rgba(15,23,32,1));
  padding: var(--space-3xl) 0;
}

.pulso__layout{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
  margin: var(--space-2xl) 0;
}

.pulso__visual{
  position: relative;
}

.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--large{
  padding: 12px;
}

.media-frame img{
  border-radius: 14px;
  width: 100%;
  height: auto;
  display: block;
}

.media-caption{
  margin-top: 12px;
  color: rgba(230,237,243,.62);
  font-size: 13px;
  text-align: center;
}

.pulso__capabilities{
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.capability-compact{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: var(--space-md);
  transition: all .12s ease;
}

.capability-compact:hover{
  background: rgba(255,255,255,.05);
  transform: translateX(4px);
}

.cap-num{
  font-family: ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}

.capability-compact h4{
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.3;
}

.capability-compact p{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.pulso__cta{
  text-align: center;
  margin-top: var(--space-xl);
}

/* ================= VERTICALES SECTION ================= */
.verticales{
  background: linear-gradient(180deg, rgba(15,23,32,1), rgba(11,19,26,1));
  padding: var(--space-3xl) 0;
}

.verticales__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

.vertical-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all .2s ease;
}

.vertical-card:hover{
  border-color: rgba(47,179,195,.28);
  box-shadow: 0 20px 60px rgba(0,0,0,.30);
  transform: translateY(-6px);
}

.vertical-card__media{
  position: relative;
  padding-top: 66%;
  overflow: hidden;
}

.vertical-card__media img{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical-card__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.26) 0%,
    rgba(0,0,0,.78) 100%
  );
}

.vertical-card__tag{
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 8px 14px;

  background: rgba(10,16,24,.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;

  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(230,237,243,.92);
}

.vertical-card__question{
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.vertical-card__content{
  padding: var(--space-lg);
}

.vertical-card__content h3{
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.vertical-card__content p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

/* ================= ECOSYSTEM SECTION ================= */
.ecosystem{
  background:
    radial-gradient(980px 320px at 18% 18%, var(--warm-2), transparent 62%),
    linear-gradient(180deg, rgba(11,19,26,1), rgba(9,14,20,1));
  padding: var(--space-3xl) 0;
}

.ecosystem__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.ecosystem-item{
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ecosystem-item__visual{
  flex-shrink: 0;
}

.ecosystem-item__number{
  font-family: ui-monospace, monospace;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,.10);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.ecosystem-item h3{
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.ecosystem-item p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.ecosystem__note{
  text-align: center;
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.ecosystem__note p{
  font-size: 19px;
  color: var(--muted);
}

.ecosystem__note strong{
  color: var(--text);
  font-weight: 900;
}

/* ================= CTA SECTION ================= */
.cta{
  background:
    radial-gradient(860px 340px at 50% 0%, rgba(47,179,195,.10), transparent 60%),
    linear-gradient(180deg, rgba(47,179,195,.08), rgba(15,23,32,1));
  padding: var(--space-3xl) 0;
}

.cta__box{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: var(--space-2xl) var(--space-xl);

  /* más premium: un “glass” cálido leve */
  background:
    radial-gradient(820px 260px at 30% 0%, var(--warm-3), transparent 60%),
    rgba(10,16,24,.26);

  text-align: center;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.cta__box h2{
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta__description{
  margin: var(--space-lg) auto;
  max-width: 70ch;
  color: rgba(230,237,243,.82);
  font-size: 17px;
  line-height: 1.6;
}

.cta__description strong{
  color: var(--accent);
  font-weight: 900;
}

.cta__actions{
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.cta__note{
  display: block;
  font-size: 12px;
  color: rgba(230,237,243,.55);
}

/* ================= FOOTER (legacy blocks) ================= */
.footer{
  background: #071016;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__inner{
  padding: var(--space-2xl) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.footer__brand img{
  height: 44px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__brand p{
  color: rgba(230,237,243,.60);
  max-width: 46ch;
  font-size: 15px;
}

.footer__nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.footer__col h4{
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.footer__col a{
  display: block;
  font-size: 14px;
  color: rgba(230,237,243,.70);
  margin-bottom: var(--space-sm);
  transition: color .12s ease;
}

.footer__col a:hover{
  color: var(--text);
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 12px;
  color: rgba(230,237,243,.48);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px){
  .verticales__grid{
    grid-template-columns: 1fr;
  }

  .pulso__layout{
    grid-template-columns: 1fr;
  }

  .ecosystem__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  :root{
    --space-3xl: 80px;
    --space-2xl: 64px;
  }

  .container{
    width: calc(100% - 32px);
  }

  .nav{
    display: none;
  }

  .hero{
    min-height: 80vh;
    padding-top: calc(110px + 74px);
    padding-bottom: var(--space-2xl);
  }

  .hero h1{
    font-size: clamp(32px, 8vw, 48px);
  }

  .problem__box{
    transform: translateY(-32px);
    padding: var(--space-xl) var(--space-md);
  }

  .problem__grid{
    grid-template-columns: 1fr;
  }

  .capabilities{
    grid-template-columns: 1fr;
  }

  .verticales__grid{
    grid-template-columns: 1fr;
  }

  .footer__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__nav{
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .cta__actions{
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn--large{
    width: 100%;
  }
}

@media (max-width: 480px){
  .container{
    width: calc(100% - 24px);
  }
}

/* ================= HEADER PILL ================= */
.h-pill{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);

  /* menos “plástico” */
  background: rgba(255,255,255,.06);

  box-shadow: 0 10px 25px rgba(0,0,0,.22);
  font-size: 12px;
  white-space: nowrap;
}

.h-pill__dot{
  width: 8px; height: 8px;
  background: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(53,208,127,.14);
}

/* EL PUNTO VERDE DENTRO DEL BOTÓN */
.status-dot{
  height: 8px;
  width: 8px;
  background-color: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(53,208,127,.65);
  animation: pulse-simple 2s infinite;
}

@keyframes pulse-simple{
  0%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.5; transform: scale(1.2); }
  100%{ opacity: 1; transform: scale(1); }
}

/* =========================
   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(244,238,226,.10), transparent 62%),
    radial-gradient(460px 220px at 28% 65%, rgba(244,238,226,.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(244,238,226,.22), 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;
  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(244,238,226,.16);
  background: rgba(244,238,226,.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(244,238,226,.92);
}

.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;
  }
}

/* ============================================
   JELDU - COLOR SHIFT (NOTORIO)
   Pegar al FINAL del CSS para pisar todo.
   ============================================ */

:root{
  /* FONDOS: más claros y “premium” */
  --bg0: #0f1b24;
  --bg1: #12212c;
  --bg2: #162a37;

  /* Cards más visibles (menos “hacker”) */
  --card: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.14);
  --border-strong: rgba(255,255,255,.20);

  /* Texto un poquito más claro */
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.74);

  /* Acento más vivo (sin ser neón) */
  --accent: #36d1cf;
  --accent2: #2bb7d6;

  /* Botón: más “producto” */
  --focus: rgba(54,209,207,.40);

  /* Verde status menos “radioactivo” */
  --status-green: #43e38f;
}

/* HERO: overlay más liviano (cambio muy visible) */
.hero__overlay{
  background:
    radial-gradient(900px 520px at 26% 28%, rgba(54,209,207,.20), transparent 62%),
    radial-gradient(820px 420px at 78% 22%, rgba(43,183,214,.16), transparent 62%),
    linear-gradient(180deg, rgba(6,12,16,.42), rgba(6,12,16,.78));
}

/* Botones: más “glow premium” */
.btn{
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: #061018;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow:
    0 14px 30px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.06) inset;
}
.btn:hover{
  filter: brightness(1.05);
  box-shadow:
    0 18px 44px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,255,255,.08) inset;
}

/* Ghost: más legible */
.btn--ghost{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.22);
}

/* Cards: contraste más “friendly” */
.problem__box,
.vertical-card,
.media-frame,
.capability-compact,
.problem-card,
.cta__box{
  border-color: var(--border);
}

/* Vertical cards: overlay un poco menos oscuro (se siente menos industrial) */
.vertical-card__overlay{
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.70) 100%
  );
}

/* Pills: más finas */
.proof-pill,
.h-pill{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
}

/* Dot (proof): más visible */
.dot{
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(54,209,207,.14);
}

/* ============================================
   FIX GLOBAL BOTONES GHOST (consistentes)
   ============================================ */

.btn--ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.30);
  color: rgba(255,255,255,.92);
  opacity: 1;
}

.btn--ghost:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.40);
  color: #ffffff;
}

.capability-compact{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ============================================
   PULSO - NUEVA ESTRUCTURA 2 COLUMNAS
   ============================================ */

.pulso__layout-new{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.pulso__content-new h2{
  margin-top: 16px;
}

.pulso__lead{
  margin-top: 18px;
  margin-bottom: 36px;
  max-width: 55ch;
}

.pulso__capabilities-new{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.capability-new{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 20px;
  transition: all .2s ease;
}

.capability-new:hover{
  background: rgba(255,255,255,.07);
  transform: translateX(4px);
}

.capability-new h4{
  margin: 6px 0;
  font-size: 16px;
  font-weight: 900;
}

.capability-new p{
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.pulso__cta-new{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.pulso__visual-new{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* RESPONSIVE */

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

  .pulso__visual-new{
    order: -1; /* imagen arriba en mobile */
  }
}

/* FIX: centrar párrafo "muted" dentro de section-intro--center */
.section-intro--center .muted{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Elimina espacio fantasma antes del footer */
section:last-of-type{
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

footer{
  margin-top: 0 !important;
}

/* CTA final: sin espacio fantasma, pero con aire antes del footer */
section.cta#contacto{
  padding-top: 96px;      /* opcional, si quieres mantener consistencia */
  padding-bottom: 72px;   /* ESTE es el aire que te falta */
  margin-bottom: 0;
}

section.cta#contacto .cta__box{
  margin-bottom: 0;
}

/* Footer pegado limpio */
footer, .footer, .j-footerX{
  margin-top: 0 !important;
}

section.cta#contacto{
  padding-bottom: 120px; /* más respiración real */
}

footer{
  background: linear-gradient(to bottom, rgba(0,0,0,0), #050b12);
}

/* CTA final: control exacto del aire antes del footer */
section.cta#contacto{
  padding-top: 120px;   /* mantenemos aire arriba */
  padding-bottom: 60px; /* reducimos aire abajo */
}

/* ===== FIX HARD: eliminar “aire” antes del footer (sí o sí) ===== */
section.cta#contacto{
  padding-bottom: 104px !important;
  margin-bottom: 0 !important;
}

footer.j-footerX{
  margin-top: 0 !important;
}

/* Por si el container o la caja está metiendo spacing extra */
section.cta#contacto .container{
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

section.cta#contacto .cta__box{
  margin-bottom: 0 !important;
}

footer.j-footerX{
  border-top: 1px solid rgba(255,255,255,.06);
}