/* ============================================================
   P1S — Seguridad y Transporte de Valores
   Hoja de estilos compartida
   ============================================================ */

:root {
  /* Paleta */
  --bg:            #0f100a;
  --bg-2:          #13140d;
  --surface:       #16170f;
  --surface-3:     #0c0d07;
  --accent:        #676900;   /* acento */
  --accent-web:    #8a8c00;   /* acento luminoso */
  --accent-hover:  #7d8000;
  --accent-dark:   #5a5c00;
  --on-accent:     #16170f;

  --text:          #d8dfda;
  --text-soft:     #a9b29c;
  --text-mute:     #9ba79a;
  --text-dim:      #8a9281;
  --line:          rgba(255, 255, 255, .07);
  --line-2:        rgba(255, 255, 255, .12);

  /* Sección clara */
  --light-bg:      #f3f5f1;
  --light-surface: #ffffff;
  --light-text:    #16170f;
  --light-mute:    #5a6340;

  /* Tipografía */
  --font-head: 'Saira', system-ui, sans-serif;
  --font-body: 'Saira Semi Condensed', 'Saira', system-ui, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --pad-x: 40px;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur:  .25s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: clip; }
body { overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* Animación de entrada */
@keyframes p1sFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.reveal { animation: p1sFade .8s var(--ease) both; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
}

/* Tipografía utilitaria */
.eyebrow { font-size: 14px; font-weight: 700; letter-spacing: .22em; color: var(--accent-web); margin-bottom: 18px; }
.eyebrow--light { color: var(--light-mute); }
.body-font { font-family: var(--font-body); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--on-accent); padding: 16px 34px; font-size: 16px; }
.btn--primary:hover { background: var(--accent-hover); box-shadow: 0 14px 30px rgba(103, 105, 0, .35); }
.btn--ghost { border: 1px solid rgba(255,255,255,.2); color: #fff; padding: 16px 34px; font-size: 16px; }
.btn--ghost:hover { border-color: #9ba87a; background: rgba(255,255,255,.04); }
.btn--dark { background: var(--on-accent); color: #fff; padding: 18px 38px; font-size: 17px; }
.btn--dark:hover { background: #000; }
.btn--outline-dark { border: 1.5px solid var(--on-accent); color: var(--on-accent); padding: 18px 38px; font-size: 17px; }
.btn--outline-dark:hover { background: rgba(22,23,15,.08); }
.btn--sm { padding: 11px 22px; font-size: 14px; letter-spacing: .04em; border-radius: 7px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 16, 10, 0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(15, 16, 10, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* Barra de progreso de lectura (integrada en la cabecera) */
.scroll-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; pointer-events: none; }
.scroll-progress__bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-web));
  box-shadow: 0 0 10px rgba(138, 140, 0, .7);
  transition: width .08s linear;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.nav__brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.brand__logo { height: 34px; width: 72px; flex: none; }
.brand__tag {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; color: #9ba87a;
  line-height: 1.1; border-left: 1px solid rgba(255,255,255,.18); padding-left: 14px;
}
.nav__right { display: flex; align-items: center; gap: 38px; }
.nav__links { display: flex; gap: 32px; font-size: 15px; font-weight: 600; letter-spacing: .02em; }
.nav__link { position: relative; color: #b8bfb0; padding-bottom: 4px; transition: color var(--dur) var(--ease); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--accent-web); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link--active { color: #fff; }
.nav__link--active::after { transform: scaleX(1); background: var(--accent); }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: #fff;
}
.nav__toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO (genérico)
   ============================================================ */
.hero { position: relative; overflow: hidden; display: flex; align-items: center; }
.hero--home { min-height: 680px; }
.hero--tall { min-height: 720px; border-bottom: 1px solid var(--line); }
.hero--simple { padding: 100px var(--pad-x) 80px; border-bottom: 1px solid var(--line); display: block; position: relative; overflow: hidden; }
.hero--video { min-height: 600px; border-bottom: 1px solid var(--line); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero__video-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15,16,10,.94) 0%, rgba(15,16,10,.78) 42%, rgba(15,16,10,.35) 100%),
    linear-gradient(0deg, rgba(15,16,10,.7) 0%, transparent 45%);
}
.hero--video .hero__inner { position: relative; z-index: 2; }
.hero--center { text-align: center; background: var(--bg-2); border-bottom: 1px solid var(--line); display: block; position: relative; overflow: hidden; }
.hero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(80% 90% at 78% 50%, rgba(103,105,0,.22), transparent 60%); }
.hero__glow--right { background: radial-gradient(70% 90% at 82% 60%, rgba(103,105,0,.2), transparent 60%); }
.hero__glow--top { background: radial-gradient(70% 100% at 50% 0%, rgba(103,105,0,.18), transparent 58%); }
.hero__figure {
  position: absolute; bottom: 0; right: 2%; height: 108%; max-width: 48%;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.6)); pointer-events: none;
}
.hero__figure--rifle { right: -17%; top: 0; height: 100%; width: auto; max-width: none; object-position: bottom right; filter: drop-shadow(0 24px 50px rgba(0,0,0,.6)); }
.hero__fade { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; pointer-events: none; background: linear-gradient(90deg, var(--bg) 0%, transparent 30%); }
.hero__watermark { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: #14150d; pointer-events: none; }
.hero__inner { position: relative; width: 100%; padding-top: 90px; padding-bottom: 90px; }

.badge {
  display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; max-width: 100%;
  background: rgba(103,105,0,.14); border: 1px solid rgba(154,168,122,.3);
  padding: 8px 18px; border-radius: 30px; margin-bottom: 34px;
}
.badge--strong { background: rgba(103,105,0,.18); border-color: rgba(154,168,122,.4); margin-bottom: 32px; }
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-web); box-shadow: 0 0 12px var(--accent-web); }
.badge__text { font-size: 13px; font-weight: 600; letter-spacing: .14em; color: #bcc4ab; }

.hero__title { font-size: clamp(46px, 6.5vw, 92px); font-weight: 800; line-height: .95; color: #fff; letter-spacing: -.01em; max-width: 760px; }
.hero__title--lg { font-size: clamp(46px, 7vw, 96px); }
.hero__title--md { font-size: clamp(40px, 6vw, 80px); line-height: .96; }
.accent { color: var(--accent-web); }
.hero__lead { font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: var(--text-soft); font-family: var(--font-body); max-width: 540px; margin-top: 32px; }
.hero__lead--wide { max-width: 680px; }
.hero__actions { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.hero__center-actions { margin-top: 44px; }

/* ============================================================
   SECCIONES GENÉRICAS
   ============================================================ */
.section { padding-top: 120px; padding-bottom: 120px; }
.section--tight { padding-top: 110px; padding-bottom: 110px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 64px; }
.section-title { font-size: clamp(36px, 4.5vw, 58px); font-weight: 800; color: #fff; line-height: 1; }
.section-title--md { font-size: clamp(32px, 4vw, 52px); }
.link-arrow { color: #9ba87a; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--accent); padding-bottom: 3px; transition: color var(--dur) var(--ease); }
.link-arrow:hover { color: #fff; }

/* Banda de confianza */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 0; }
.stat__num { font-size: 54px; font-weight: 800; color: var(--accent-web); line-height: 1; }
.stat__label { font-size: 15px; color: #9ba87a; font-weight: 600; margin-top: 8px; font-family: var(--font-body); }

/* Tarjetas de servicio (preview home) */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 46px 44px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.service-card:hover { border-color: rgba(154,168,122,.5); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,.4); }
.service-card__num { font-size: 15px; font-weight: 800; color: var(--accent); margin-bottom: 22px; letter-spacing: .04em; }
.service-card__title { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.service-card__text { font-size: 17px; line-height: 1.6; color: var(--text-mute); font-family: var(--font-body); }
.service-card--accent { background: var(--accent); position: relative; overflow: hidden; }
.service-card--accent .service-card__num { color: #3f4932; }
.service-card--accent .service-card__title { color: var(--on-accent); }
.service-card--accent .service-card__text { color: #2c2e10; font-weight: 500; }
.card-watermark { position: absolute; right: -30px; bottom: -30px; height: 200px; width: 422px; color: var(--accent-dark); opacity: .5; }
.service-card--accent > * { position: relative; }

/* Centro de control (split) */
.split { position: relative; overflow: hidden; background: var(--surface); border-top: 1px solid var(--line); }
.split__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 520px; }
.split__copy { padding: 110px 60px 110px var(--pad-x); display: flex; flex-direction: column; justify-content: center; }
.split__copy--right { padding: 100px var(--pad-x) 100px 60px; }
.split__title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 26px; }
.split__lead { font-size: 19px; line-height: 1.6; color: var(--text-soft); font-family: var(--font-body); margin-bottom: 30px; max-width: 480px; }
.split__media { position: relative; min-height: 380px; overflow: hidden; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__media-fade { position: absolute; inset: 0; background: linear-gradient(90deg, var(--surface) 0%, transparent 22%, transparent 80%, rgba(22,23,15,.4)); }
.mini-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.mini-stat__num { font-size: 34px; font-weight: 800; color: var(--accent-web); }
.mini-stat__label { font-size: 15px; color: #9ba87a; font-family: var(--font-body); }

/* Lista de checks */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check { display: flex; gap: 16px; align-items: flex-start; }
.check__mark { width: 12px; height: 12px; background: var(--accent); border-radius: 3px; margin-top: 7px; flex: none; }
.check span { font-size: 17px; color: #dfe4d5; font-family: var(--font-body); }

/* ============================================================
   SECCIÓN CLARA
   ============================================================ */
.light { background: var(--light-bg); color: var(--light-text); }
.light .section-title { color: var(--light-text); }
.light__lead { font-size: 19px; line-height: 1.55; color: #3a3d33; font-family: var(--font-body); max-width: 620px; margin-bottom: 56px; }

.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.sector-card { background: var(--light-surface); border-radius: 14px; padding: 36px 30px; box-shadow: 0 14px 34px rgba(0,0,0,.06); border-top: 4px solid var(--accent); }
.sector-card h3 { font-size: 23px; font-weight: 700; margin-bottom: 10px; }
.sector-card p { font-size: 15px; line-height: 1.5; color: var(--light-mute); font-family: var(--font-body); }

/* ============================================================
   CTA (banda)
   ============================================================ */
.cta { position: relative; overflow: hidden; background: var(--accent); color: var(--on-accent); }
.cta__watermark { position: absolute; left: -80px; bottom: -90px; height: 420px; width: 886px; color: var(--accent-dark); opacity: .45; pointer-events: none; }
.cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-top: 100px; padding-bottom: 100px; }
.cta__title { font-size: clamp(34px, 4.5vw, 58px); font-weight: 800; line-height: .98; }
.cta__lead { font-size: 20px; color: #2c2e10; font-family: var(--font-body); margin-top: 18px; font-weight: 500; }
.cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta--dark { background: var(--bg-2); border-top: 1px solid var(--line); color: #fff; }
.cta--dark .cta__inner { display: block; text-align: center; }
.cta--dark .cta__lead { color: var(--text-soft); margin: 18px auto 40px; max-width: 560px; }

/* ============================================================
   PÁGINA SERVICIOS
   ============================================================ */
.service-row { display: grid; grid-template-columns: 80px 1fr 1.1fr; gap: 40px; align-items: center; padding: 54px 0; border-bottom: 1px solid var(--line); }
.service-row:last-child { border-bottom: none; }
.service-row__num { font-size: 42px; font-weight: 800; color: var(--accent); }
.service-row h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.service-row p { font-size: 18px; line-height: 1.6; color: var(--text-mute); font-family: var(--font-body); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-size: 14px; font-weight: 600; color: #bcc4ab; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 9px 16px; border-radius: 30px; font-family: var(--font-body); }

/* Proceso (oscuro y claro) */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { border-top: 3px solid var(--accent); padding-top: 24px; }
.step__num { font-size: 15px; font-weight: 800; color: var(--accent-web); margin-bottom: 14px; }
.light .step__num { color: var(--light-mute); }
.step h3 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.light .step h3 { color: var(--light-text); }
.step p { font-size: 16px; line-height: 1.55; color: var(--text-mute); font-family: var(--font-body); }
.light .step p { color: var(--light-mute); }

/* ============================================================
   PÁGINA NOSOTROS
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.brand-panel { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; min-height: 440px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.brand-panel__wm { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 300px; width: 633px; color: #1c1e12; }
.brand-panel__content { position: relative; text-align: center; color: #fff; }
.brand-panel__logo { height: 74px; width: 156px; color: #fff; margin: 0 auto 24px; }
.brand-panel__k1 { font-size: 18px; font-weight: 600; letter-spacing: .16em; color: #9ba87a; }
.brand-panel__k2 { font-size: 38px; font-weight: 800; color: #fff; margin-top: 4px; }
.about__title { font-size: clamp(30px, 3.4vw, 46px); font-weight: 800; color: #fff; line-height: 1.05; margin-bottom: 26px; }
.about__text { font-size: 19px; line-height: 1.6; color: var(--text-soft); font-family: var(--font-body); margin-bottom: 22px; }
.about__text:last-child { margin-bottom: 0; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 50px; }
.mv-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.mv-card__bar { width: 44px; height: 5px; background: var(--accent); }
.mv-card__label { font-size: 18px; font-weight: 700; letter-spacing: .18em; color: #9ba87a; }
.mv-card p { font-size: 23px; line-height: 1.5; color: #eef1e8; font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { background: var(--light-surface); border-radius: 16px; padding: 44px; box-shadow: 0 16px 40px rgba(0,0,0,.06); }
.value-card__icon { width: 58px; height: 58px; border-radius: 13px; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.value-card__icon svg { height: 22px; width: 46px; color: var(--on-accent); }
.value-card h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 17px; line-height: 1.55; color: var(--light-mute); font-family: var(--font-body); }

.tech-panel { position: relative; min-height: 340px; background: var(--bg); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tech-panel__wm { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 280px; width: 591px; color: #1c1e12; }
.tech-panel__content { position: relative; text-align: center; color: #fff; }
.tech-panel__num { font-size: 60px; font-weight: 800; color: var(--accent-web); line-height: 1; }
.tech-panel__label { font-size: 16px; font-weight: 600; letter-spacing: .16em; color: #9ba87a; margin-top: 8px; }

/* ============================================================
   PÁGINA CONTACTO
   ============================================================ */
.contact { position: relative; overflow: hidden; }
.contact__wm { position: absolute; right: -150px; top: -60px; height: 560px; width: 1181px; color: #14150d; pointer-events: none; }
.contact__grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px; padding: 100px var(--pad-x) 110px; max-width: var(--maxw); margin: 0 auto; }
.contact__title { font-size: clamp(40px, 5.5vw, 76px); font-weight: 800; line-height: .96; color: #fff; }
.contact__lead { font-size: 20px; line-height: 1.55; color: var(--text-soft); font-family: var(--font-body); margin-top: 28px; max-width: 460px; }
.info-list { margin-top: 54px; display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.info-item__icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(103,105,0,.16); border: 1px solid rgba(154,168,122,.3); display: flex; align-items: center; justify-content: center; flex: none; }
.info-item__icon svg { height: 18px; width: 38px; color: var(--accent-web); }
.info-item__k { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: #9ba87a; }
.info-item__v { font-size: 24px; font-weight: 600; color: #fff; font-family: var(--font-body); }

.form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: 20px; padding: 50px; }
.form-card h2 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.form-card__hint { font-size: 16px; color: var(--text-dim); font-family: var(--font-body); margin-bottom: 34px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { margin-bottom: 18px; }
.field label, .form__row label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: #9ba87a; margin-bottom: 8px; }
.input {
  width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 9px;
  padding: 14px 16px; color: #fff; font-size: 16px; font-family: var(--font-body);
  transition: border-color var(--dur) var(--ease);
}
textarea.input { resize: vertical; }
.input::placeholder { color: #6f7766; }
.input:focus { outline: none; border-color: var(--accent-web); }
.form button[type="submit"] { width: 100%; padding: 17px; border-radius: 10px; }
.form__status { margin-top: 18px; text-align: center; font-size: 15px; font-family: var(--font-body); min-height: 1px; }
.form__status--ok { color: #9ba87a; }
.form__status--err { color: #e0795f; }
.form__status--busy { color: var(--text-soft); }
/* Honeypot anti-spam (oculto a humanos) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   PÁGINA TRABAJA
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit-card { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 42px; }
.benefit-card__icon { width: 56px; height: 56px; border-radius: 12px; background: rgba(103,105,0,.16); border: 1px solid rgba(154,168,122,.3); display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.benefit-card__icon svg { height: 18px; width: 38px; color: var(--accent-web); }
.benefit-card h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.benefit-card p { font-size: 16px; line-height: 1.55; color: var(--text-mute); font-family: var(--font-body); }
.benefit-card--accent { background: var(--accent); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.benefit-card--accent h3 { color: var(--on-accent); font-weight: 800; line-height: 1.05; font-size: 26px; }
.benefit-card--accent p { color: #2c2e10; font-weight: 500; }
.benefit-card--accent > * { position: relative; }
.benefit-card__wm { position: absolute; right: -20px; bottom: -20px; height: 160px; width: 338px; color: var(--accent-dark); opacity: .5; }

.requirements { background: rgba(103,105,0,.1); border: 1px solid rgba(154,168,122,.28); border-radius: 14px; padding: 22px 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 44px; }
.requirements__k { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--accent-web); }
.tag--solid { color: #e7eadf; border-color: rgba(255,255,255,.1); }

.vacancies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vacancy { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 34px 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.vacancy h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.vacancy p { font-size: 15px; color: var(--text-mute); font-family: var(--font-body); }
.vacancy .btn { white-space: nowrap; flex: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--surface-3); border-top: 1px solid var(--line); }
.footer__inner { padding: 70px var(--pad-x) 40px; max-width: var(--maxw); margin: 0 auto; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.footer__logo { height: 38px; width: 80px; color: #fff; margin-bottom: 22px; }
.footer__about { font-size: 16px; line-height: 1.6; color: var(--text-dim); font-family: var(--font-body); max-width: 320px; }
.footer__col-title { font-size: 13px; font-weight: 700; letter-spacing: .16em; color: var(--accent); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 13px; font-size: 16px; color: #b8bfb0; font-family: var(--font-body); }
.footer__links a { transition: color var(--dur) var(--ease); }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 13px; font-size: 16px; color: #b8bfb0; font-family: var(--font-body); }
.footer__bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--light-mute); letter-spacing: .04em; }

/* ============================================================
   INTERACCIÓN / ACABADO
   ============================================================ */

/* Aparición al hacer scroll (lo añade ui.js; si no hay JS, todo se ve) */
.reveal-init { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal-init.in-view { opacity: 1; transform: none; }

/* Tarjeta de servicio destacada (acento) */
.service-card--accent { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.service-card--accent:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(103,105,0,.35); }

/* Sectores (sección clara) */
.sector-card { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.sector-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.14); }

/* Valores */
.value-card { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(0,0,0,.12); }
.value-card__icon { transition: transform var(--dur) var(--ease); }
.value-card:hover .value-card__icon { transform: rotate(-6deg) scale(1.06); }

/* Beneficios (Trabaja) */
.benefit-card { transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(154,168,122,.5); box-shadow: 0 22px 50px rgba(0,0,0,.4); }
.benefit-card--accent:hover { box-shadow: 0 22px 50px rgba(103,105,0,.35); }

/* Vacantes */
.vacancy { transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.vacancy:hover { transform: translateY(-4px); border-color: rgba(154,168,122,.45); box-shadow: 0 18px 40px rgba(0,0,0,.35); }

/* Filas de servicio (página Servicios) */
.service-row { transition: background var(--dur) var(--ease); }
.service-row:hover { background: rgba(255,255,255,.02); }
.service-row:hover .service-row__num { color: var(--accent-web); transition: color var(--dur) var(--ease); }

/* Items de contacto */
.info-item__icon { transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.info-item:hover .info-item__icon { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.info-item:hover .info-item__icon svg { color: var(--on-accent); }

/* Enlaces con flecha */
.link-arrow { display: inline-block; transition: color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.link-arrow:hover { transform: translateX(4px); }

/* Marca en el header */
.nav__brand .brand__logo { transition: transform var(--dur) var(--ease); }
.nav__brand:hover .brand__logo { transform: scale(1.06); }

/* Flotación sutil del operador del hero */
@keyframes p1sFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__figure { animation: p1sFloat 7s ease-in-out infinite; }

/* Accesibilidad: foco visible por teclado */
a:focus-visible, button:focus-visible, .input:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent-web); outline-offset: 3px; border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-init { opacity: 1; transform: none; transition: none; }
  .hero__figure { animation: none; }
  .btn:hover, .service-card:hover, .service-card--accent:hover, .sector-card:hover,
  .value-card:hover, .benefit-card:hover, .vacancy:hover { transform: none; }
  .scroll-progress__bar { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-x: 28px; }

  /* Nav móvil */
  .nav__toggle { display: block; }
  .nav__right {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(15, 16, 10, .98); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad-x) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }
  .nav.is-open .nav__right { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; gap: 0; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  /* En móvil la cabecera siempre es glass para legibilidad del menú */
  .site-header { background: rgba(15, 16, 10, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
  .nav__link--active { border-bottom: 1px solid var(--line); color: var(--accent-web); }
  .nav__right .btn { margin-top: 16px; text-align: center; }

  /* Splits y grids de 2 → 1 col */
  .split__grid, .about, .mv-grid, .vacancies-grid { grid-template-columns: 1fr; }
  .split__copy, .split__copy--right { padding: 70px var(--pad-x); }
  .split__media { min-height: 320px; }
  .about { gap: 40px; }
  .brand-panel { min-height: 320px; }

  .services-grid, .values-grid, .benefits-grid, .sectors-grid { grid-template-columns: repeat(2, 1fr); }

  /* Servicios: fila → bloque apilado */
  .service-row { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .service-row__num { font-size: 34px; }

  /* Héroes con figura: el operador queda como fondo difuminado tras el texto */
  .hero__fade { display: none; }
  .hero--home, .hero--tall { min-height: 480px; }
  .hero--video { min-height: 440px; }
  .hero__inner { padding-top: 70px; padding-bottom: 70px; width: 100%; position: relative; z-index: 2; }
  .hero__lead { max-width: none; }
  .hero__figure, .hero__figure--rifle {
    position: absolute; display: block; z-index: 0;
    right: 0; bottom: 0; top: auto; left: auto;
    width: auto; height: 90%; max-width: 80%; max-height: none;
    object-fit: contain; object-position: bottom right;
    opacity: .32; filter: blur(1px);
    margin: 0; animation: none; pointer-events: none;
    -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 92%);
            mask-image: linear-gradient(to left, #000 30%, transparent 92%);
  }

  /* Contacto */
  .contact__grid { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; padding-bottom: 80px; }
  .contact__lead, .split__lead { max-width: none; }
}

@media (max-width: 768px) {
  .section, .section--tight { padding-top: 72px; padding-bottom: 72px; }
  /* Títulos de hero: bajar el piso para que no desborden en móvil */
  .hero__title, .hero__title--lg, .hero__title--md, .contact__title { font-size: clamp(32px, 8vw, 56px); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .section-head { margin-bottom: 44px; }
  .cta__inner { padding-top: 70px; padding-bottom: 70px; }
  .form-card { padding: 32px 26px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .vacancy { flex-direction: column; align-items: flex-start; }
  .vacancy .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  :root { --pad-x: 20px; }
  .services-grid, .values-grid, .benefits-grid, .sectors-grid,
  .trust__grid, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .service-card, .benefit-card, .mv-card, .value-card { padding: 32px 26px; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; text-align: center; }
  .mini-stats { gap: 28px; }
  .hero__title, .hero__title--lg, .hero__title--md, .contact__title { font-size: 30px; line-height: 1.05; }
  .section-title, .section-title--md, .cta__title, .split__title, .about__title { font-size: clamp(28px, 8vw, 38px); }
}
