/* ============================================================
     APOLO WEBS — Single-file landing — v20260526
     ============================================================ */

  :root {
    /* Curvas de movimiento (nunca las de CSS por defecto) */
    --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
    --ease-soft:   cubic-bezier(0.32, 0.72, 0, 1);
    --ease-pop:    cubic-bezier(.22,.68,0,1.4);
    --navy:        #1B1C2E;
    --wa-verde:    #1FA855;   /* verde oficial de WhatsApp en Apolo Webs */
    --navy-2:      #252840;
    --orange:      #FF5500;
    --orange-dk:   #CC4400;
    --orange-lt:   rgba(255,85,0,0.10);
    --orange-txt:  #CC4400;   /* naranja legible para texto pequeño sobre claro (4.78:1) */
    --white:       #FFFFFF;
    --light-bg:    #E3E8F1;
    --sky-2:       #E3E8F1;
    --text:        #1B1C2E;
    --text-muted:  #5A6678;
    --border:      #E2E8F0;
    --shadow:      0 4px 24px rgba(27,28,46,0.08);
    --shadow-lg:   0 16px 56px rgba(27,28,46,0.14);
    --radius:      12px;
    --radius-lg:   24px;
    --f-title:     'Instrument Sans', sans-serif;
    --f-body:      'Inter', sans-serif;
    --nav-h:       clamp(72px, 8vw, 118px);
    --max-w:       1200px;
    --px:          clamp(20px, 5vw, 64px);
    --sec-py:      clamp(72px, 8vw, 104px);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: var(--navy); }
  body { font-family: var(--f-body); font-size: 16px; line-height: 1.65; color: var(--text); background: transparent; overflow-x: hidden; }
  img  { display: block; max-width: 100%; height: auto; }
  a    { text-decoration: none; color: inherit; }
  ul   { list-style: none; }
  button { cursor: pointer; border: none; background: none; font-family: inherit; }
  em   { font-style: normal; color: var(--orange); }

  h1, h2, h3, h4 { font-family: var(--f-title); line-height: 1.2; }
  /* Los titulares grandes en peso medio y con interlínea corta: así respiran. */
  h1 { font-size: clamp(34px, 5vw, 64px); font-weight: 500; line-height: 1.1; letter-spacing: -0.022em; }
  h2 { font-size: clamp(27px, 3.6vw, 46px); font-weight: 500; line-height: 1.14; letter-spacing: -0.02em; }
  /* Los pequeños sí necesitan cuerpo para leerse */
  h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 600; }
  h4 { font-weight: 600; }

  /* Scroll reveal */
  /* Entrada: la opacidad llega antes que el movimiento (asimetría = sensación orgánica).
     El escalonado NO se define aquí: lo calcula el JS por lote real de entrada. */
  .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.34s var(--ease-out), transform 0.44s var(--ease-out);
    will-change: opacity, transform;
  }
  .reveal.visible { opacity: 1; transform: none; will-change: auto; }

  /* Buttons */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 100px; font-family: var(--f-title); font-weight: 700; font-size: 15px; transition: background-color 0.12s var(--ease-out), border-color 0.12s var(--ease-out), transform 0.12s var(--ease-out); will-change: transform; white-space: nowrap; cursor: pointer; border: 2px solid transparent; }
  .btn-primary { background: var(--orange); color: #FFF4EC; box-shadow: 0 2px 10px rgba(255,85,0,0.10); }
  .btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,85,0,0.2); }
  .btn-outline-white { background: transparent; color: #FFF4EC; border-color: rgba(255,244,236,0.55); }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #FFF4EC; transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--navy); border-color: var(--border); }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange-txt); }
  .btn-lg { padding: 17px 36px; font-size: 16px; }
  .btn-full { width: 100%; }

  /* Section shells */
  .section { padding: var(--sec-py) var(--px); }
  .container { max-width: var(--max-w); margin: 0 auto; }
  .bg-light { background: var(--light-bg); }
  .bg-navy  { background: var(--navy);    color: #FFF4EC; }
  .text-center { text-align: center; }

  .sec-label { display: inline-block; font-family: var(--f-title); font-size: 11.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange-txt); margin-bottom: 12px; }
  .sec-title { margin-bottom: 16px; }
  .sec-sub   { font-size: 17px; color: var(--text-muted); line-height: 1.75; max-width: 580px; }
  .sec-header { margin-bottom: 56px; }
  .bg-navy .sec-sub { color: rgba(255,244,236,0.58); }

  /* ===== NAV ===== */
  #nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; height: var(--nav-h);
    padding: 0 var(--px);
    background: transparent;
    transition: background 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  }
  #nav.scrolled {
    background: rgba(27,28,46,0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.22);
  }
  .nav-inner {
    height: 100%; max-width: var(--max-w);
    margin: 0 auto; padding: 0;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  /* Logo: icono vectorial + texto real. Escala sin perder nitidez y no depende de archivos. */
  .nav-logo, .footer-logo { display: flex; align-items: center; gap: 12px; }
  .brand-icon { width: auto; flex-shrink: 0; display: block; }
  .nav-logo .brand-icon    { height: 68px; }
  .footer-logo .brand-icon { height: clamp(44px, 5vw, 64px); }
  .brand-text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
  .brand-name {
    font-family: var(--f-title); font-weight: 700; color: #FFF4EC;
    letter-spacing: -0.02em;
  }
  .brand-name em { font-style: normal; color: var(--orange); }
  .nav-logo .brand-name    { font-size: 31px; }
  .footer-logo .brand-name { font-size: clamp(20px, 2.1vw, 28px); }
  @media (max-width: 1239px) and (min-width: 1121px) {
    .nav-logo .brand-icon { height: 56px; }
    .nav-logo .brand-name { font-size: 25px; }
    .nav-logo .brand-tag  { font-size: 8px; letter-spacing: 0.2em; }
  }
  @media (max-width: 700px) {
    .nav-logo .brand-icon { height: 46px; }
    .nav-logo .brand-name { font-size: 22px; }
    .nav-logo .brand-tag  { font-size: 7.5px; letter-spacing: 0.18em; }
    .nav-logo { gap: 9px; }
  }
  @media (max-width: 400px) {
    .nav-logo .brand-icon { height: 40px; }
    .nav-logo .brand-name { font-size: 19px; }
    .nav-logo .brand-tag  { font-size: 7px; letter-spacing: 0.15em; }
  }
  .brand-tag {
    font-family: var(--f-body); font-weight: 500; color: #FF7A2A;
    text-transform: uppercase; letter-spacing: 0.26em;
  }
  .nav-logo .brand-tag    { font-size: 9.5px; }
  .footer-logo .brand-tag { font-size: clamp(8px, 0.68vw, 9.5px); }
  
  .nav-links { display: flex; align-items: center; gap: clamp(6px, 1.1vw, 18px); }
  .nav-links a {
    font-size: 14px; font-weight: 500; color: rgba(255,244,236,0.82);
    white-space: nowrap; transition: color 0.16s var(--ease-out);
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta { flex-shrink: 0; }
  .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.22s var(--ease-out), opacity 0.16s var(--ease-out); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background:
      radial-gradient(ellipse 90% 55% at 50% -15%, rgba(255,85,0,0.13) 0%, transparent 58%),
      radial-gradient(circle at 88% 85%, rgba(60,50,190,0.07) 0%, transparent 40%),
      rgba(27,28,46,0.82);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: calc(var(--nav-h) + 56px) var(--px) 80px;
  }
  /* Global space canvas — fixed, just below page content */
  #bgCanvas {
    position: fixed; inset: 0; z-index: 0;
    width: 100%; height: 100%; pointer-events: none;
  }
  /* Ensure page content stacks above canvas */
  main, .trust-bar, footer { position: relative; z-index: 1; }
  .hero-inner {
    max-width: var(--max-w); margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,85,0,0.14); border: 1px solid rgba(255,85,0,0.28);
    color: #FF8845; font-size: 12.5px; font-weight: 600;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  }
  .hero h1 { color: #FFF4EC; margin-bottom: 22px; }
  .hero h1 em { white-space: nowrap; font-size: clamp(28px, 4.2vw, 54px); display: inline-block; }
  .hero-sub { font-size: 18px; color: rgba(255,244,236,0.68); line-height: 1.75; margin-bottom: 38px; max-width: 500px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
  .hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
  .hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,244,236,0.55); }
  .hero-trust-item i { color: var(--orange); }

  /* Hero mockup */
  .hero-visual { position: relative; display: flex; justify-content: center; }
  .hero-mockup {
    width: 100%; max-width: 440px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.45);
    animation: floatY 7s ease-in-out infinite;
  }
  /* Tres ritmos distintos: si todos flotaran igual, se vería mecánico.
     Las duraciones no son múltiplos entre sí, así nunca se sincronizan. */
  @keyframes floatY  { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-13px)} }
  @keyframes floatA  { 0%,100%{transform:translateY(0)}    50%{transform:translateY(-8px)}  }
  @keyframes floatB  { 0%,100%{transform:translateY(-2px)} 50%{transform:translateY(-11px)} }
  .mockup-bar { background: rgba(255,255,255,0.07); padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
  .m-dot { width: 10px; height: 10px; border-radius: 50%; }
  .m-dot:nth-child(1){background:#FF5F56} .m-dot:nth-child(2){background:#FEBC2E} .m-dot:nth-child(3){background:#27C93F}
  .mockup-url { flex:1; background:rgba(255,255,255,0.07); border-radius:4px; padding:4px 10px; font-size:11.5px; color: rgba(255,244,236,0.38); margin-left:8px; }
  .mockup-body { padding: 20px; }
  .mockup-hero-block {
    height: 90px; border-radius: 8px; margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(255,85,0,0.25), rgba(60,50,180,0.22));
    display: flex; align-items: center; justify-content: center; font-size: 30px;
  }
  .m-line { height: 7px; background: rgba(255,255,255,0.09); border-radius: 4px; margin-bottom: 7px; }
  .m-line.w-80{width:80%} .m-line.w-60{width:60%} .m-line.w-40{width:40%}
  .m-fake-btn { display:inline-block; background:var(--orange); color: #FFF4EC; padding:7px 18px; border-radius:100px; font-size:11px; font-weight:700; margin-top:10px; }
  .float-chip {
    position: absolute; background: #fff; border-radius: 12px;
    padding: 10px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    display: flex; align-items: center; gap: 8px;
    font-family: var(--f-title); font-size: 12.5px; font-weight: 700;
    color: var(--navy); white-space: nowrap;
  }
  .float-chip i { font-size: 14px; }
  .chip-green i { color:#22C55E }
  .chip-orange i { color:var(--orange) }
  .float-chip--1 { top:-18px; right:-24px; animation: floatA 5.5s ease-in-out infinite; }
  .float-chip--2 { bottom: -22px; left:-30px; animation: floatB 6.3s ease-in-out 1.1s infinite; }

  /* ===== TRUST BAR ===== */
  .trust-bar { background: var(--orange); padding: 26px var(--px); }
  .trust-bar-inner {
    max-width: var(--max-w); margin: 0 auto;
    display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px;
  }
  .trust-stat { text-align: center; }
  .trust-stat-num { display: block; font-family: var(--f-title); font-weight: 700; font-size: 34px; color: #FFF4EC; line-height: 1.1; }
  .trust-stat-label { font-size: 13px; color: rgba(255,244,236,0.88); }
  .trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

  /* ===== PACKAGES ===== */
  .packages { padding: var(--sec-py) var(--px); background: var(--light-bg); }
  .packages-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch;
  }
  .plan-card {
    background: #fff; border-radius: var(--radius-lg); border: 2px solid var(--border);
    padding: 30px 26px; position: relative;
    transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), border-color 0.24s var(--ease-out);
    display: flex; flex-direction: column;
  }
  .plan-card:hover { transform: translateY(-16px) scale(1.03); box-shadow: 0 28px 64px rgba(27,28,46,0.22); border-color: rgba(255,85,0,0.45); transition: transform 0.35s cubic-bezier(.22,.68,0,1.4), box-shadow 0.35s ease, border-color 0.35s ease; }
  .plan-card.featured { background: var(--navy); color: #FFF4EC; border-color: var(--orange); box-shadow: var(--shadow-lg); }
  .plan-card.featured:hover { transform: translateY(-16px) scale(1.03); box-shadow: 0 36px 80px rgba(255,85,0,0.13); }
  .plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #FFF4EC; font-size: 11px; font-weight: 700;
    padding: 4px 16px; border-radius: 100px; white-space: nowrap;
    font-family: var(--f-title);
  }
  /* Los emojis traían color propio; los iconos heredan y hay que dárselo.
     Naranja oscuro sobre tarjeta clara (4.53:1), naranja vivo sobre oscura (4.85:1). */
  .plan-icon { font-size: 30px; margin-bottom: 14px; line-height: 1; color: var(--orange-txt); }
  .plan-card.featured .plan-icon, .plan-mant .plan-icon { color: var(--orange); }
  .plan-name { font-family: var(--f-title); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
  .plan-card.featured .plan-name { color: #FFF4EC; }
  .plan-delivery { font-size: 12px; font-weight: 600; color: var(--orange-txt); margin-bottom: 18px; display: flex; align-items: center; gap: 5px; }
  .plan-card.featured .plan-delivery { color: #FF8845; }
  .plan-price-block { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
  .plan-card.featured .plan-price-block { border-color: rgba(255,244,236,0.12); }
  .plan-from { font-size: 11.5px; color: var(--text-muted); margin-bottom: 2px; }
  .plan-card.featured .plan-from { color: rgba(255,244,236,0.48); }
  .plan-price { font-family: var(--f-title); font-weight: 700; font-size: 38px; line-height: 1; }
  .plan-card.featured .plan-price { color: #FFF4EC; }
  .plan-mxn { font-size: 13.5px; font-weight: 600; color: var(--text-muted); vertical-align: super; }
  .plan-card.featured .plan-mxn { color: rgba(255,244,236,0.55); }
  .plan-cta { margin-top: auto; }
  /* El mantenimiento es un añadido, no un plan: toma su altura natural */
  .packages-grid .plan-card:last-child { align-self: start; }
  .plan-features { flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
  .plan-features li { font-size: 13px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
  .plan-features li .fi { color: var(--orange); font-size: 13px; margin-top: 1px; flex-shrink: 0; }
  .plan-features li.no .fi { color: rgba(180,180,180,0.7); }
  .plan-features li.no { color: var(--text-muted); opacity: 0.6; }
  .plan-card.featured .plan-features li { color: rgba(255,244,236,0.72); }
  .plan-card.featured .plan-features li.no { opacity: 0.38; }
  .plan-cta { margin-top: auto; }
  /* El mantenimiento es un añadido, no un plan: toma su altura natural */
  .packages-grid .plan-card:last-child { align-self: start; }

  .plans-note {
    text-align: center; margin-top: 36px;
    font-size: 13.5px; color: var(--text-muted);
  }
  .plans-note a { color: var(--orange-txt); font-weight: 600; }

  /* ===== ANIMATED SPACE BACKGROUNDS ===== */
  @keyframes starsFloat {
    from { background-position: 17px 23px, 43px 57px; }
    to   { background-position: calc(17px + 130px) calc(23px + 100px),
                                calc(43px + 65px)  calc(57px + 50px); }
  }
  @keyframes orbitSpin { to { transform: rotate(360deg); } }
  @keyframes shootCss {
    0%   { opacity: 0; transform: translate(0,0);        }
    8%   { opacity: 0.8; }
    60%  { opacity: 0; transform: translate(220px,95px); }
    100% { opacity: 0; transform: translate(220px,95px); }
  }

  /* Process — dark semi-transparent + orbit ring (canvas handles stars) */
  .process { padding: var(--sec-py) var(--px); background: rgba(27,28,46,0.82); position: relative; overflow: hidden; }
  .process .sec-title { color: #FFF4EC; }
  .process .container { position: relative; z-index: 1; }
  .process::after {
    content: ''; position: absolute; z-index: 0; pointer-events: none;
    width: 900px; height: 900px;
    border: 1px solid rgba(255,85,0,0.08);
    border-radius: 50%;
    right: -340px; bottom: -460px;
    animation: orbitSpin 90s linear infinite;
  }
  .process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-step {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-lg); padding: 30px 26px;
    transition: border-color 0.24s var(--ease-out), background 0.24s var(--ease-out), opacity 0.24s var(--ease-out), transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
  }
  /* Al pasar el cursor por una tarjeta, esa se ilumina y las demás se opacan */
  .process-grid:hover .process-step:hover {
    border-color: rgba(255,85,0,0.55);
    background: rgba(255,85,0,0.07); transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.35);
  }
  .step-num {
    width: 38px; height: 38px; background: var(--orange); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-title); font-weight: 700; font-size: 15px; color: #FFF4EC; margin-bottom: 16px;
  }
  .step-icon { font-size: 26px; margin-bottom: 13px; color: var(--orange); }
  .step-title { font-family: var(--f-title); font-weight: 700; font-size: 16px; color: #FFF4EC; margin-bottom: 8px; }
  .step-desc  { font-size: 13.5px; color: rgba(255,244,236,0.55); line-height: 1.68; }

  /* ===== BENEFITS ===== */
  .benefits { padding: var(--sec-py) var(--px); background: var(--sky-2); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
  .benefit-card {
    background: #fff; border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--border);
    transition: transform 0.28s var(--ease-pop), box-shadow 0.28s var(--ease-out), opacity 0.24s var(--ease-out);
  }
  .benefits-grid:hover .benefit-card:hover {
    transform: translateY(-14px) scale(1.04);
    box-shadow: 0 24px 52px rgba(27,28,46,0.16); border-color: rgba(255,85,0,0.4);
  }
  .benefit-icon {
    width: 50px; height: 50px; background: var(--orange-lt); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px; color: var(--orange); margin-bottom: 14px;
  }
  .benefit-title { font-family: var(--f-title); font-weight: 700; font-size: 15.5px; margin-bottom: 7px; }
  .benefit-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.68; }

  /* ===== INDUSTRIES ===== */
  .industries { padding: var(--sec-py) var(--px); background: rgba(27,28,46,0.82); color: #FFF4EC; }
  .industries-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
  .industry-card {
    background: rgba(255,255,255,0.055); border-radius: var(--radius); padding: 26px 12px;
    text-align: center; border: 1px solid var(--border);
    transition: border-color 0.28s var(--ease-out), transform 0.28s var(--ease-pop), box-shadow 0.28s var(--ease-out), opacity 0.24s var(--ease-out);
  }
  .industries-grid:hover .industry-card:hover {
    border-color: var(--orange);
    transform: translateY(-16px) scale(1.08);
    box-shadow: 0 20px 44px rgba(255,85,0,0.08);
  }
  .industry-icon { font-size: 30px; margin-bottom: 10px; line-height: 1; color: var(--orange); }
  .industry-name { font-family: var(--f-title); font-weight: 700; font-size: 13px; line-height: 1.3; color: var(--text); }

  /* ===== SERVICIOS ALTERNOS ===== */
  .alt-services { padding: var(--sec-py) var(--px); background: var(--light-bg); color: var(--text); position: relative; overflow: hidden; }
  .alt-services .container { position: relative; z-index: 1; }
  .alt-services .sec-label { color: var(--orange); }
  .alt-services .sec-sub { color: rgba(255,244,236,0.72); }
  .alt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
  .alt-card {
    background: rgba(255,255,255,0.62); border: 1px solid rgba(27,28,46,0.10);
    border-radius: var(--radius-lg); padding: 32px 26px; position: relative;
    transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), border-color 0.24s var(--ease-out); backdrop-filter: blur(12px);
  }
  .alt-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 16px 44px rgba(0,0,0,0.35); }
  .alt-badge {
    position: absolute; top: 18px; right: 18px; font-family: var(--f-title); font-weight: 700;
    font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase; padding: 6px 12px;
    border-radius: 100px; background: var(--orange-lt); color: var(--orange); border: 1px solid rgba(255,85,0,0.4);
  }
  .alt-badge.soon { background: rgba(255,255,255,0.08); color: rgba(255,244,236,0.85); border-color: rgba(255,244,236,0.25); }
  .alt-icon {
    width: 58px; height: 58px; background: var(--orange); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 25px; color: #FFF4EC; margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255,85,0,0.16);
  }
  .alt-title { font-family: var(--f-title); font-weight: 700; font-size: 19px; margin-bottom: 10px; color: var(--navy); }
  .alt-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
  .alt-price { font-family: var(--f-title); font-weight: 700; font-size: 14px; color: var(--orange-txt); margin-bottom: 20px; }
  .alt-cta {
    display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-title); font-weight: 700;
    font-size: 13.5px; color: #FFF4EC; padding: 11px 22px; border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.3); transition: background 0.16s var(--ease-out), border-color 0.16s var(--ease-out), transform 0.16s var(--ease-out);
  }
  .alt-cta:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

  /* ===== TESTIMONIALS ===== */
  .testimonials { padding: var(--sec-py) var(--px); background: var(--sky-2); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
  .testi-card {
    background: #fff; border-radius: var(--radius-lg); padding: 30px 26px;
    border-left: 4px solid var(--orange);
    transition: transform 0.28s var(--ease-pop), box-shadow 0.28s var(--ease-out), opacity 0.24s var(--ease-out);
  }
  .testimonials-grid:hover .testi-card:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 28px 60px rgba(27,28,46,0.18);
  }
  .testi-stars { color: #FBBF24; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
  .testi-quote { font-size: 14.5px; line-height: 1.78; color: var(--text-muted); font-style: italic; margin-bottom: 18px; }
  .testi-result {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,85,0,0.08); color: var(--orange);
    font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
  }
  .testi-author { display: flex; align-items: center; gap: 13px; }
  .testi-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--orange), #CC4400);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-title); font-weight: 700; font-size: 17px; color: #FFF4EC;
  }
  .testi-name { font-family: var(--f-title); font-weight: 700; font-size: 14.5px; }
  .testi-biz  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

  /* ===== FAQ ===== */
  .faq { padding: var(--sec-py) var(--px); background: rgba(27,28,46,0.82); color: #FFF4EC; }
  .faq-inner { max-width: 780px; margin: 0 auto; }
  .faq-list { display: flex; flex-direction: column; gap: 10px; }
  .faq-item {
    background: rgba(255,255,255,0.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.11); overflow: hidden;
    transition: border-color 0.2s var(--ease-out);
  }
  .faq-item.open { border-color: var(--orange); }
  .faq-q {
    color: #FFF4EC;
    width: 100%; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    text-align: left; font-family: var(--f-title); font-weight: 600; font-size: 15.5px; color: var(--text);
    cursor: pointer; background: transparent;
  }
  .faq-q i { color: var(--orange); transition: transform 0.24s var(--ease-out); flex-shrink: 0; }
  .faq-item.open .faq-q i { transform: rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.34s var(--ease-soft), padding 0.2s var(--ease-out); padding: 0 22px; }
  .faq-a p { font-size: 14.5px; color: rgba(255,244,236,0.72); line-height: 1.78; }
  .faq-item.open .faq-a { max-height: 320px; padding: 0 22px 20px; }

  /* ===== DIAGNOSIS / CTA FORM ===== */
  .diagnosis {
    background: linear-gradient(145deg, rgba(27,28,46,0.92) 0%, rgba(29,30,52,0.92) 100%);
    padding: var(--sec-py) var(--px); color: #FFF4EC; text-align: center; position: relative; overflow: hidden;
  }
  .diagnosis::before {
    content: ''; position: absolute; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,85,0,0.11) 0%, transparent 65%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
  }
  /* Orbit ring for diagnosis */
  .diagnosis .diag-orbit {
    position: absolute; z-index: 0; pointer-events: none;
    width: 700px; height: 700px;
    border: 1px solid rgba(255,85,0,0.06);
    border-radius: 50%;
    left: -250px; top: -250px;
    animation: orbitSpin 110s linear infinite;
  }
  .diagnosis .sec-title { color: #FFF4EC; }
  .diagnosis .sec-sub   { color: rgba(255,244,236,0.62); margin: 0 auto 44px; }
  .diag-form {
    max-width: 640px; margin: 0 auto;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 40px 36px;
    backdrop-filter: blur(12px); text-align: left;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label { font-size: 12.5px; font-weight: 500; color: rgba(255,244,236,0.62); }
  .form-group input,
  .form-group select {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
    border-radius: 8px; padding: 13px 16px; font-family: var(--f-body); font-size: 14.5px; color: #FFF4EC;
    outline: none; transition: border-color 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out); appearance: none; -webkit-appearance: none; width: 100%;
  }
  .form-group input::placeholder { color: rgba(255,244,236,0.28); }
  .form-group input:focus,
  .form-group select:focus { border-color: rgba(255,85,0,0.55); }
  .form-group select option { background: #252840; color: #FFF4EC; }

  /* ===== FOOTER ===== */
  .footer { background: rgba(27,28,46,0.94); color: rgba(255,244,236,0.6); padding: 64px var(--px) 28px; }
  .footer-top {
    max-width: var(--max-w); margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px;
    padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo { margin-bottom: 14px; }
  
  .footer-tagline { font-size: 13.5px; line-height: 1.72; max-width: 280px; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .footer-social a {
    width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,244,236,0.65); font-size: 15px; transition: background 0.16s var(--ease-out), color 0.16s var(--ease-out);
  }
  .footer-social a:hover { background: var(--orange); color: #FFF4EC; }
  .footer-col h4, .footer-col .foot-h { font-family: var(--f-title); font-weight: 700; font-size: 13px; color: #FFF4EC; margin-bottom: 18px; letter-spacing: 1px; text-transform: uppercase; }
  .footer-col ul { display: flex; flex-direction: column; gap: 9px; }
  .footer-col ul a { font-size: 13.5px; color: rgba(255,244,236,0.52); transition: color 0.16s var(--ease-out); }
  .footer-col ul a:hover { color: var(--orange); }
  .footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; margin-bottom: 10px; }
  .footer-contact li i { color: var(--orange); margin-top: 3px; width: 15px; flex-shrink: 0; }
  .footer-bottom {
    max-width: var(--max-w); margin: 0 auto; padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px;
  }
  .footer-bottom a { color: rgba(255,244,236,0.38); }
  .footer-bottom a:hover { color: var(--orange); }

  /* ===== BANNER DE CONTACTO ===== */
  .social-banners { display: flex; flex-wrap: wrap; }
  .social-half {
    flex: 1 1 50%; min-width: 320px; padding: 44px clamp(22px,4vw,52px);
    position: relative; overflow: hidden;
  }
  .social-half::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: rgba(0,0,0,0.18);
  }
  .wa-banner::before { background: transparent; }
  .ig-banner {
    background: linear-gradient(135deg, #6a0dad 0%, #c13584 35%, #e1306c 60%, #fd1d1d 80%, #fcb045 100%);
  }
  .mail-banner {
    background: linear-gradient(135deg, #1558C0 0%, #1a73e8 50%, #2C7BE5 100%);
  }
  .ig-inner {
    max-width: 560px; margin: 0 auto; position: relative;
    display: flex; align-items: center; justify-content: center;
    gap: 22px; flex-wrap: wrap;
  }
  .ig-handle.handle-mail { font-size: 20px; word-break: break-all; }
  .gmail-dot { display: inline-flex; gap: 3px; vertical-align: middle; margin-left: 6px; }
  .gmail-dot span { width: 7px; height: 7px; border-radius: 50%; }
  .ig-avatar {
    width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #FFF4EC;
  }
  .ig-copy { text-align: left; }
  .ig-eyebrow { font-size: 11.5px; color: rgba(255,244,236,0.78); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px; }
  .ig-handle { font-family: var(--f-title); font-weight: 700; font-size: 28px; color: #FFF4EC; line-height: 1; }
  .ig-desc { font-size: 13.5px; color: rgba(255,244,236,0.78); margin-top: 5px; }
  .btn-ig { background: rgba(255,255,255,0.14); color: #FFF4EC; border-color: rgba(255,244,236,0.45); flex-shrink: 0; }
  .btn-ig:hover { background: rgba(255,255,255,0.26); border-color: #FFF4EC; transform: translateY(-2px); }
  @media (max-width: 1060px) {
    .ig-inner { flex-direction: column; text-align: center; gap: 16px; }
    .ig-copy { text-align: center; }
    .ig-handle.handle-mail { word-break: break-word; }
  }

  /* WhatsApp float */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 58px; height: 58px; background: var(--wa-verde); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.2); transition: transform 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.25); }
  .wa-float i { color: #FFF4EC; font-size: 27px; }

  /* ===== RESPONSIVE ===== */
  /* Siete enlaces + botón dejan de caber antes de 1120px: menú desplegable */
  @media (max-width: 1120px) {
    .nav-links {
      display: none; flex-direction: column; gap: 18px; align-items: flex-start;
      position: fixed; top: var(--nav-h); left: 0; right: 0;
      background: rgba(27,28,46,0.97); padding: 28px var(--px);
      border-top: 1px solid rgba(255,255,255,0.09);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-links { margin-right: 0; }
    .nav-toggle { margin-left: auto; order: 3; }
    .nav-cta { order: 4; }
  }
  @media (max-width: 1100px) {
    .packages-grid    { grid-template-columns: repeat(2,1fr); }
    .benefits-grid    { grid-template-columns: repeat(3,1fr); }
    .industries-grid  { grid-template-columns: repeat(3,1fr); }
  }
  @media (max-width: 960px) {
    .hero-inner         { grid-template-columns: 1fr; }
    .hero-visual        { display: none; }
    .process-grid       { grid-template-columns: repeat(2,1fr); }
    .alt-grid           { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .testimonials-grid  { grid-template-columns: 1fr 1fr; }
    .footer-top         { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; gap: 18px; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(27,28,46,0.97); padding: 28px var(--px); border-top: 1px solid rgba(255,255,255,0.09); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-cta   { display: none; }
    .packages-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-6px); }
    .benefits-grid    { grid-template-columns: repeat(2,1fr); }
    .process-grid     { grid-template-columns: 1fr; }
    .industries-grid  { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid{ grid-template-columns: 1fr; }
    .form-grid        { grid-template-columns: 1fr; }
    .diag-form        { padding: 28px 20px; }
  }
  @media (max-width: 480px) {
    .hero-btns       { flex-direction: column; align-items: flex-start; }
    .hero-trust      { flex-direction: column; gap: 10px; }
    .benefits-grid   { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2,1fr); }
    .trust-bar-inner { flex-direction: column; gap: 18px; }
    .trust-divider   { display: none; }
    .footer-top      { grid-template-columns: 1fr; }
    .footer-bottom   { flex-direction: column; text-align: center; }
  }

  /* ===== Accesibilidad: foco visible por teclado ===== */
  :focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 6px;
  }
  .btn:focus-visible, .wa-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
  }
  .form-group input:focus, .form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,85,0,0.07);
  }

  /* ===== Respeta a quien pide menos movimiento ===== */
  @media (prefers-reduced-motion: reduce) {
    /* Menos movimiento no es cero animación: se conservan los cambios de
       opacidad y color (ayudan a entender), se elimina el desplazamiento. */
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
    }
    .reveal {
      transform: none !important;
      transition: opacity 0.25s ease !important;
    }
    .plan-card:hover, .benefit-card:hover, .industry-card:hover,
    .alt-card:hover, .btn:hover, .wa-float:hover { transform: none !important; }
    #bgCanvas { display: none !important; }
  }



  /* ===== Respuesta al presionar (lo que hace que un botón "escuche") ===== */
  .btn:active,
  .plan-cta a:active,
  .alt-cta:active,
  .wa-float:active {
    transform: scale(0.97);
    transition-duration: 0.09s;
  }
  .faq-q:active { transform: scale(0.995); }

  /* ===== El hover solo donde hay cursor real =====
     En pantallas táctiles, tocar dispara :hover y se queda pegado. */
  @media (hover: none) {
    .plan-card:hover,
    .benefit-card:hover,
    .industry-card:hover,
    .alt-card:hover,
    .btn:hover {
      transform: none;
      box-shadow: inherit;
    }
  }



  /* ═══════════════════════════════════════════════════
     CIERRE — Secuencia de despegue
     Lenguaje visual propio: un solo panel, sin tarjetas,
     sin hover que eleva. La animación ocurre UNA vez, al
     entrar en pantalla, y avanza como una cuenta regresiva.
     ═══════════════════════════════════════════════════ */
  .despegue { position: relative; overflow: hidden; padding-bottom: clamp(70px,9vw,110px); background: var(--light-bg); }
  .despegue-panel {
    max-width: 880px; margin: 0 auto; position: relative;
    background: none; border: none; box-shadow: none; padding: 0;
  }
  /* Barra de progreso que se llena una sola vez */

  .despegue-tele {
    font-family: var(--f-title); font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,244,236,0.42); margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .despegue-tele b { color: var(--orange); font-weight: 700; }
  .despegue h2 {
    font-family: var(--f-title); font-weight: 600; color: #FFF4EC;
    font-size: clamp(26px,3.6vw,42px); line-height: 1.18;
    letter-spacing: -0.015em; margin-bottom: 10px;
  }
  .despegue h2 em { font-weight: 700; }
  .despegue h2 em { color: var(--orange); font-style: normal; }
  .despegue-sub { font-size: 15.5px; color: rgba(255,244,236,0.68); max-width: 560px; margin-bottom: 34px; line-height: 1.7; }
  .despegue-sub strong { color: #FFF4EC; font-weight: 600; }

  /* Las tres garantías: filas, no tarjetas */
  .garantias { display: flex; flex-direction: column; margin-bottom: 34px; }
  .gar {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }
  .gar:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .despegue-panel.encendido .gar { opacity: 1; transform: none; }
  .despegue-panel.encendido .gar:nth-child(1) { transition-delay: 0.15s; }
  .despegue-panel.encendido .gar:nth-child(2) { transition-delay: 0.40s; }
  .despegue-panel.encendido .gar:nth-child(3) { transition-delay: 0.65s; }

  /* El check se DIBUJA, no aparece de golpe */
  .gar-check { width: 30px; height: 30px; flex-shrink: 0; margin-top: 2px; }
  .gar-check circle {
    fill: none; stroke: rgba(255,85,0,0.32); stroke-width: 2;
  }
  .gar-check path {
    fill: none; stroke: var(--orange); stroke-width: 2.6;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 26; stroke-dashoffset: 26;
    transition: stroke-dashoffset 0.55s cubic-bezier(0.23,1,0.32,1);
  }
  .despegue-panel.encendido .gar:nth-child(1) .gar-check path { transition-delay: 0.45s; stroke-dashoffset: 0; }
  .despegue-panel.encendido .gar:nth-child(2) .gar-check path { transition-delay: 0.70s; stroke-dashoffset: 0; }
  .despegue-panel.encendido .gar:nth-child(3) .gar-check path { transition-delay: 0.95s; stroke-dashoffset: 0; }

  .gar-txt b {
    display: block; font-family: var(--f-title); font-weight: 700;
    font-size: 16.5px; color: #FFF4EC; margin-bottom: 4px;
  }
  .gar-txt span { font-size: 14.5px; color: rgba(255,244,236,0.62); line-height: 1.65; }

  .despegue-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .btn-despegue {
    display: inline-flex; align-items: center; gap: 11px;
    background: linear-gradient(135deg, #F05A0A, #D14A00); color: #FFF4EC;
    font-family: var(--f-title); font-weight: 700; font-size: 16.5px;
    padding: 19px 40px; border-radius: 100px; text-decoration: none;
    box-shadow: 0 12px 34px rgba(255,85,0,0.15);
    transition: transform 0.14s var(--ease-out), box-shadow 0.14s var(--ease-out);
  }
  .btn-despegue:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(255,85,0,0.21); }
  .btn-despegue:active { transform: scale(0.975); }

  @media (max-width: 600px) {
    .gar { gap: 14px; }
    .btn-despegue { width: 100%; justify-content: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    .despegue-panel::before { transition: none; width: 100%; }
    .gar { opacity: 1 !important; transform: none !important; }
    .gar-check path { stroke-dashoffset: 0 !important; transition: none; }
  }



  /* ═══ Cohete que despega dentro del botón ═══ */
  .btn-despegue i.fa-rocket {
    transition: transform 0.45s cubic-bezier(0.34,1.4,0.5,1);
  }
  @media (hover: hover) and (pointer: fine) {
    .btn-despegue:hover i.fa-rocket { transform: translate(3px,-4px) rotate(12deg); }
  }
  .btn-despegue .estela {
    display: inline-block; width: 0; height: 2px; border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85));
    margin-right: -4px; vertical-align: middle;
    transition: width 0.35s var(--ease-out);
  }
  @media (hover: hover) and (pointer: fine) {
    .btn-despegue:hover .estela { width: 16px; }
  }


  /* ═══════════════════════════════════════════════
     TOQUES FINALES — detalle fino, no ruido
     ═══════════════════════════════════════════════ */

  /* 2. Borde superior que se ilumina en la tarjeta destacada */
  .plan-card.featured { position: relative; }
  .plan-card.featured::before {
    content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.85;
  }


  /* 4. El punto de telemetría late como una señal en vivo */
  .despegue-tele b { animation: latido 2.4s ease-in-out infinite; display: inline-block; }
  @keyframes latido { 0%,100% { opacity: 1; transform: none; } 50% { opacity: 0.35; transform: translateX(2px); } }

  /* 5. Brillo que recorre el botón de cierre cada cierto tiempo */
  .btn-despegue { position: relative; overflow: hidden; }
  @keyframes barrido { 0% { left: -60%; } 32%, 100% { left: 130%; } }

  @media (prefers-reduced-motion: reduce) {
    .despegue-tele b { animation: none !important; }
  }




  /* ═══════════════════════════════════════════════════════
     PROMOCIÓN DE TEMPORADA — se edita una vez al mes
     Para cambiarla, busca el comentario "EDITAR PROMO" en el HTML
     ═══════════════════════════════════════════════════════ */
  :root { --rojo: #C8102E; --rojo-osc: #A00C24; }
  .promo-temp {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--rojo), var(--rojo-osc));
    padding: clamp(52px,7vw,84px) var(--px);
  }
  .promo-temp::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(760px circle at 85% 10%, rgba(255,255,255,0.12), transparent 60%);
  }
  .promo-caja {
    max-width: 1180px; margin: 0 auto; position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.25fr auto 0.9fr;
    align-items: center; gap: clamp(28px,4vw,54px);
  }
  .promo-izq { position: relative; z-index: 1; flex: 1 1 380px; }
  .promo-etiqueta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3);
    color: #FFF4EC; font-family: var(--f-title); font-weight: 700; font-size: 11.5px;
    letter-spacing: 1.6px; text-transform: uppercase;
    padding: 7px 16px; border-radius: 100px; margin-bottom: 16px;
  }
  .promo-caja h2 {
    font-family: var(--f-title); font-weight: 700; color: #FFF4EC;
    font-size: clamp(24px,3.2vw,36px); line-height: 1.18; margin-bottom: 10px;
  }
  .promo-caja p { color: rgba(255,244,236,0.88); font-size: 15.5px; line-height: 1.7; max-width: 460px; }
  .promo-der { position: relative; z-index: 1; text-align: center; flex-shrink: 0; }
  .promo-antes { color: rgba(255,244,236,0.62); font-size: 15px; text-decoration: line-through; margin-bottom: 2px; }
  .promo-precio { font-family: var(--f-title); font-weight: 700; font-size: clamp(38px,5vw,54px); color: #FFF4EC; line-height: 1; }
  .promo-precio small { font-size: 0.36em; font-weight: 600; color: rgba(255,244,236,0.72); }
  .promo-vigencia {
    font-family: var(--f-title); font-size: 12px; font-weight: 600; letter-spacing: 0.6px;
    color: rgba(255,244,236,0.78); margin-top: 8px;
  }
  .promo-cta-txt {
    margin-top: 16px; font-family: var(--f-title); font-weight: 700;
    font-size: 15px; color: rgba(255,244,236,0.92); letter-spacing: 0.2px;
  }
  @media (max-width: 720px) {
    .promo-caja { flex-direction: column; align-items: flex-start; text-align: left; }
    .promo-der { text-align: left; width: 100%; }
  }


  /* Cristal solo en tarjetas que viven sobre fondo oscuro */
  .process-step {
    background: linear-gradient(160deg, rgba(48,52,82,0.30), rgba(31,33,56,0.18)) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
  }


  /* Texto claro en las secciones que ahora son oscuras */
  .industries .sec-title, .faq .sec-title { color: #FFF4EC; }
  .industries .sec-sub, .faq .sec-sub { color: rgba(255,244,236,0.66); }
  .industry-card:hover { border-color: rgba(255,85,0,0.55); background: rgba(255,255,255,0.09); }
  /* Texto oscuro en Más servicios, que ahora es clara */
  .alt-services .sec-title { color: var(--navy); }
  .alt-services .sec-sub { color: var(--text-muted); }
  .alt-badge.soon { background: rgba(27,28,46,0.07); color: var(--navy); border-color: rgba(27,28,46,0.18); }
  .alt-card:hover { border-color: rgba(255,85,0,0.4); background: rgba(255,255,255,0.8); }
  .alt-cta { color: var(--orange-txt); }


  /* Cuadros de secciones claras: dejan ver el fondo */
  .benefit-card, .plan-card:not(.featured):not(.plan-mant), .alt-card {
    background: rgba(255,255,255,0.58) !important;
    backdrop-filter: blur(10px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(115%);
    border: 1px solid rgba(255,255,255,0.75) !important;
  }
  .benefit-card:hover, .plan-card:not(.featured):not(.plan-mant):hover {
    background: rgba(255,255,255,0.76) !important;
  }


  .promo-desc h2 { margin-bottom: 12px; }
  .promo-cifra {
    text-align: center; padding: 0 clamp(18px,2.5vw,34px);
    border-left: 1px solid rgba(255,255,255,0.22);
    border-right: 1px solid rgba(255,255,255,0.22);
  }
  .promo-pct {
    display: block; font-family: var(--f-title); font-weight: 700;
    font-size: clamp(56px,8vw,96px); line-height: 0.9; color: #FFF4EC;
  }
  .promo-pct i { font-style: normal; font-size: 0.45em; vertical-align: super; opacity: 0.85; }
  .promo-pct-txt {
    display: block; font-family: var(--f-title); font-weight: 700; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase; color: rgba(255,244,236,0.82); margin-top: 6px;
  }
  .promo-precio-col { text-align: right; }
  @media (max-width: 940px) {
    .promo-caja { grid-template-columns: 1fr; text-align: left; }
    .promo-cifra { border: none; border-top: 1px solid rgba(255,255,255,0.22);
      border-bottom: 1px solid rgba(255,255,255,0.22); padding: 20px 0; text-align: left; }
    .promo-precio-col { text-align: left; }
  }


  /* Texto legible en Industrias, que ahora es sección oscura */
  .industries .industry-name { color: #FFF4EC !important; }
  .industries .industry-icon { filter: none; }


  /* Barrido de legibilidad tras invertir secciones */
  .industries .sec-label, .faq .sec-label { color: #FF7A2A; }
  .faq .faq-q { color: #FFF4EC; }
  .faq .faq-a strong { color: #FFF4EC; }
  .alt-services .sec-label { color: var(--orange-txt); }
  .alt-services .alt-badge { background: rgba(255,85,0,0.10); color: var(--orange-txt); border-color: rgba(255,85,0,0.32); }


  /* Mantenimiento: tarjeta oscura propia, no la pisa la regla translúcida */
  .plan-card.plan-mant {
    background: linear-gradient(165deg, #22243A, var(--navy)) !important;
    border: 1px solid rgba(255,133,68,0.38) !important;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .plan-mant .plan-name, .plan-mant .plan-price { color: #FFF4EC; }
  .plan-mant .plan-from, .plan-mant .plan-mxn, .plan-mant .plan-type { color: rgba(255,244,236,0.5); }
  .plan-mant .plan-price-block { border-color: rgba(255,244,236,0.14); }
  .plan-mant .plan-features li { color: rgba(255,244,236,0.78); }
  .plan-mant .plan-delivery { color: #FF9A5C; }
  .plan-mant:hover { border-color: rgba(255,133,68,0.7) !important; background: linear-gradient(165deg, #262943, #1E2036) !important; }


  /* ═══ ESPECIALIDADES — panel único con divisiones, no tarjetas sueltas ═══ */
  .industries-grid {
    display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 0 !important;
    max-width: 1080px; margin: 0 auto;
    border: 1px solid rgba(255,133,68,0.34);
    border-radius: var(--radius-lg); overflow: hidden;
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .industry-card {
    background: transparent !important; border: none !important; border-radius: 0 !important;
    padding: 30px 16px !important; position: relative;
    box-shadow: inset -1px -1px 0 rgba(255,133,68,0.16);
    transition: background 0.22s var(--ease-out);
  }
  /* El resplandor se desvanece hacia los bordes: nunca dibuja una caja
     sobre las divisiones, así que no se ve encimado. */
  .industry-card::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(ellipse 78% 68% at 50% 42%,
                rgba(255,85,0,0.16) 0%, rgba(255,85,0,0.07) 45%, transparent 72%);
    opacity: 0; transition: opacity 0.2s var(--ease-out);
  }
  .industry-card:hover::before { opacity: 1; }
  .industry-icon, .industry-name { position: relative; z-index: 1; }
  .industry-icon {
    font-size: 30px; margin-bottom: 12px;
    transition: transform 0.24s var(--ease-out);
  }
  .industry-card:hover .industry-icon { transform: translateY(-4px); }
  .industry-name { transition: color 0.2s var(--ease-out); }
  .industries .industry-card:hover .industry-name { color: #FFD9C2; }
  @media (prefers-reduced-motion: reduce) {
    .industry-card:hover .industry-icon { transform: none; }
  }
  .industries .industry-name { font-size: 14px !important; letter-spacing: 0.2px; }
  @media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2,1fr) !important; } }
  @media (max-width: 520px) { .industries-grid { grid-template-columns: 1fr !important; } }

  /* ═══ Contorno naranja en las tarjetas claras, para que no se pierdan ═══ */
  .benefit-card, .alt-card, .plan-card:not(.featured):not(.plan-mant) {
    border: 1px solid rgba(255,85,0,0.22) !important;
    box-shadow: 0 2px 14px rgba(27,28,46,0.05);
  }
  .benefit-card:hover, .alt-card:hover, .plan-card:not(.featured):not(.plan-mant):hover {
    border-color: rgba(255,85,0,0.55) !important;
  }


  /* ═══ PROMOCIÓN — más jerarquía, más impacto ═══ */
  .promo-temp::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
      repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 22px);
    opacity: 0.5;
  }
  .promo-etiqueta {
    background: #fff !important; color: var(--rojo) !important;
    border: none !important; font-size: 12.5px !important; letter-spacing: 2px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  }
  .promo-caja h2 {
    font-size: clamp(28px,4.4vw,52px) !important; font-weight: 700 !important;
    line-height: 1.04 !important; letter-spacing: -0.02em !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.18);
  }
  .promo-caja h2 em { font-style: normal; color: #FFF4EC; }
  .promo-desc p { font-size: 16.5px !important; color: rgba(255,244,236,0.9); }
  .promo-pct {
    font-size: clamp(72px,10vw,132px) !important;
    color: #FFF4EC; text-shadow: 0 6px 40px rgba(0,0,0,0.32);
  }
  .promo-pct i { color: #FFF4EC; }
  .promo-pct-txt { font-size: 14px !important; letter-spacing: 3.5px !important; }
  .promo-antes { font-size: 17px !important; }
  .promo-precio {
    font-size: clamp(38px,4.6vw,52px) !important; letter-spacing: -0.02em;
  }
  .promo-vigencia {
    display: inline-block; background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 100px;
    padding: 7px 16px; font-size: 12.5px !important; letter-spacing: 0.4px;
    margin-top: 12px !important;
  }
  .promo-cta-txt {
    font-size: 16px !important; margin-top: 14px !important;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .promo-cta-txt::before { content: '💬'; font-size: 15px; }



  /* ── Ritmo tipográfico homologado en toda la página ── */
  .sec-header { margin-bottom: clamp(38px,5vw,56px); }
  .sec-label {
    font-size: 13.5px; letter-spacing: 2.6px; margin-bottom: 15px;
  }
  .sec-title { letter-spacing: -0.02em; line-height: 1.14; font-weight: 500; }
  .sec-sub { font-size: 16px; line-height: 1.72; max-width: 620px; }

  /* ── Bordes y sombras con un mismo lenguaje ── */
  .benefit-card, .alt-card, .plan-card, .process-step, .faq-item, .industries-grid {
    border-radius: 18px;
  }
  .benefit-card, .alt-card, .process-step, .faq-item {
    transition: transform 0.24s var(--ease-out), border-color 0.24s var(--ease-out),
                background 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
  }


  .plan-type { font-size: 14.5px; line-height: 1.4; color: var(--text-muted); margin-top: 6px; }
  /* Un <li> es flex: todo su texto debe ir en UN solo hijo o se parte en columnas */
  .plan-features li > span { flex: 1; min-width: 0; }
  .con-sub { align-items: flex-start; }
  .sub-lista { display: flex; flex-direction: column; gap: 5px; margin-top: 7px; }
  .sub-lista > span {
    position: relative; padding-left: 14px; font-size: 12.2px;
    line-height: 1.4; color: var(--text-muted); opacity: 0.92;
  }
  .sub-lista > span::before {
    content: ''; position: absolute; left: 3px; top: 0.62em;
    width: 4px; height: 4px; border-radius: 50%; background: var(--orange);
    opacity: 0.55;
  }
  .plan-card.featured .sub-lista > span, .plan-mant .sub-lista > span { color: rgba(255,244,236,0.6); }
  .feat-val {
    display: inline-block; font-weight: 600; font-size: 11.5px; letter-spacing: 0.02em;
    color: var(--orange-txt); background: rgba(255,85,0,0.10);
    border: 1px solid rgba(255,85,0,0.28); border-radius: 5px;
    padding: 1px 6px; margin-left: 4px; white-space: nowrap; vertical-align: 1px;
  }
  .plan-card.featured .feat-val, .plan-mant .feat-val {
    color: #FF9A5C; background: rgba(255,133,68,0.12); border-color: rgba(255,133,68,0.34);
  }
  .plan-card.featured .plan-type { color: rgba(255,244,236,0.45); }
  .sec-label--claro { color: #FF9A5C !important; }


  /* ═══ CIERRE — sin caja, sobre el fondo de la sección ═══ */
  .despegue { text-align: left; }
  .despegue-tele { color: var(--orange-txt); }
  .despegue-tele b { color: var(--orange); }
  .despegue h2 { color: var(--navy); }
  .despegue h2 em { color: var(--orange); }
  .gar { border-top-color: rgba(27,28,46,0.12); }
  .gar:last-child { border-bottom-color: rgba(27,28,46,0.12); }
  .gar-txt b { color: var(--navy); }
  .gar-txt span { color: var(--text-muted); }
  .gar-check circle { stroke: rgba(255,85,0,0.30); }


  /* ═══ Todos los cuadros sobre fondo oscuro: misma transparencia ═══ */
  .process-step, .faq-item, .industry-card {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.11) !important;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .process-step:hover, .faq-item:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,133,68,0.42) !important;
  }
  .industry-card { border: none !important; background: transparent !important; }
  .industries-grid { background: rgba(255,255,255,0.05) !important; }
  .industry-card:hover { background: rgba(255,85,0,0.10) !important; }


  /* El enlace de promociones destaca sin gritar */
  .nav-promo i { font-size: 0.88em; }
  /* Con un elemento más, el menú se recorre a la izquierda */
  .nav-inner { justify-content: flex-start; gap: clamp(14px,2.4vw,30px); }
  .nav-links { margin-right: auto; gap: clamp(4px,1vw,14px); }
  .nav-links a { padding: 9px clamp(4px,0.55vw,9px); }


  /* ═══ Blanco + crema: el mismo juego de la promo, en toda la página ═══
     El naranja se reserva para etiquetas, íconos y botones, así no compite. */
  :root { --crema: #FFF4EC; --crema-2: #FFF4EC; }

  /* Secciones oscuras: título en blanco, segunda línea en crema */
  .process .sec-title em,
  .industries .sec-title em,
  .faq .sec-title em,
  .hero h1 em { color: var(--crema) !important; }

  /* Textos de apoyo sobre oscuro: crema tenue en vez de gris plano */
  .process .sec-sub, .industries .sec-sub, .faq .sec-sub {
    color: rgba(255,244,236,0.72) !important;
  }
  .step-title, .faq-q { color: #FFF4EC; }
  .step-desc { color: rgba(255,244,236,0.68) !important; }
  .faq-a p { color: rgba(255,244,236,0.70) !important; }
  .industries .industry-name { color: var(--crema-2) !important; }

  /* En el cierre y las secciones claras el naranja se queda: es el remate */

  /* ═══ PÁGINAS DE SERVICIO (silo por profesión) ═══ */
  .sub-hero { min-height: auto; padding: calc(var(--nav-h) + 64px) var(--px) 72px; }
  .sub-hero-inner { display: block; max-width: 780px; }
  .sub-hero h1 { margin-bottom: 20px; }
  .sub-hero .hero-sub { font-size: 17.5px; line-height: 1.75; color: rgba(255,244,236,0.75); margin-bottom: 30px; max-width: 640px; }
  .sub-hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

  .miga { font-size: 13px; margin-bottom: 20px; color: rgba(255,244,236,0.55); }
  .miga a { color: rgba(255,244,236,0.8); text-decoration: underline; text-underline-offset: 3px; }
  .miga a:hover { color: var(--orange); }
  .miga span[aria-hidden] { margin: 0 7px; opacity: 0.5; }

  .sub-grid { grid-template-columns: repeat(3,1fr) !important; }
  @media (max-width: 900px) { .sub-grid { grid-template-columns: 1fr !important; } }

  .lista-incluye { display: grid; grid-template-columns: repeat(2,1fr); gap: 13px 30px; max-width: 820px; }
  .lista-incluye li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.55; color: rgba(255,244,236,0.86); }
  .lista-incluye .fi { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
  @media (max-width: 720px) { .lista-incluye { grid-template-columns: 1fr; } }

  .enlace-txt { color: var(--orange-txt); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
  .enlace-txt:hover { color: var(--orange); }

  .enlaces-silo { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
  .enlace-silo {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 20px 24px; border-radius: var(--radius);
    background: rgba(255,255,255,0.62); border: 1px solid rgba(255,85,0,0.22);
    font-family: var(--f-title); font-weight: 600; font-size: 15.5px; color: var(--navy);
    transition: transform 0.16s var(--ease-out), border-color 0.16s var(--ease-out);
  }
  .enlace-silo i { transform: rotate(-90deg); color: var(--orange); font-size: 13px; flex-shrink: 0; }
  .enlace-silo:hover { transform: translateY(-3px); border-color: rgba(255,85,0,0.55); }
  @media (max-width: 720px) { .enlaces-silo { grid-template-columns: 1fr; } }

  @media (prefers-reduced-motion: reduce) { .enlace-silo:hover { transform: none; } }
  .enlace-tarjeta { color: inherit; }
  .enlace-tarjeta:hover { color: var(--orange-txt); }

  /* Respuesta directa: frase corta con cifras, fácil de extraer y citar */
  .resp-directa {
    max-width: 640px; margin: 0 auto 8px; font-size: 15.5px; line-height: 1.7;
    color: var(--text-muted);
  }
  .resp-directa strong { color: var(--orange-txt); font-weight: 600; }
  .bg-navy .resp-directa, .process .resp-directa, .industries .resp-directa {
    color: rgba(255,244,236,0.78);
  }
  .bg-navy .resp-directa strong { color: #FF9A5C; }

  /* ═══ Franja de contacto: correo + WhatsApp ═══ */
  /* Mitad de WhatsApp: verde oficial de la marca */
  .wa-banner {
    background: var(--wa-verde);
  }
  .ig-handle.handle-wa { font-size: 26px; letter-spacing: 0.5px; }
  .wa-banner .ig-avatar i { font-size: 34px; }

  /* El pie pasa de 4 a 3 columnas */
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr !important; }
  @media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr !important; } }
  @media (max-width: 620px) { .footer-top { grid-template-columns: 1fr !important; } }

  /* El menú lleva a la franja, que va sobre fondo de color: hay que dejarle aire */
  #contacto { scroll-margin-top: calc(var(--nav-h) + 12px); }
  @media (max-width: 700px) { .social-half { flex: 1 1 100%; } }

  /* La cifra central de la promo pasa de "%" a lo que se regala */
  .promo-regalo {
    display: block; font-family: var(--f-title); font-weight: 700;
    font-size: clamp(26px, 3.4vw, 42px); line-height: 1.05;
    color: #FFF4EC; letter-spacing: -0.02em;
  }
  .promo-antes s { opacity: 0.85; }

  /* ═══ Respuesta al pulsar: el elemento cede bajo el dedo ═══
     Solo transform, duración corta y curva propia, como el resto del sitio. */
  .nav-links a:active,
  .enlace-silo:active,
  .industry-card:active,
  .nav-toggle:active { transform: scale(0.97); }

  .plan-card:active { transform: translateY(-2px) scale(0.995); }

  .nav-links a, .nav-toggle { transition: color 0.16s var(--ease-out), transform 0.1s var(--ease-out); }
  .industry-card { transition: background 0.22s var(--ease-out), transform 0.1s var(--ease-out); }

  @media (prefers-reduced-motion: reduce) {
    .nav-links a:active, .enlace-silo:active, .industry-card:active,
    .nav-toggle:active, .plan-card:active { transform: none; }
  }

  /* ═══ Respuestas con patrón GEO: frase directa + especificaciones ═══ */
  .faq-directa { font-weight: 500; }
  .faq-specs { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; }
  .faq-specs li {
    position: relative; padding-left: 18px; font-size: 14.5px; line-height: 1.6;
    color: rgba(255,244,236,0.78);
  }
  .faq-specs li::before {
    content: ''; position: absolute; left: 3px; top: 0.62em;
    width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
  }

  /* ═══ Iconos que sustituyen a los emojis ═══ */
  /* El fueguito del badge va sobre la etiqueta blanca, con el rojo de la promo */
  .promo-etiqueta i { color: var(--rojo); margin-right: 5px; font-size: 0.92em; }
