/* =============================================
   ValorActiva — Hoja de estilos principal
   Versión: 1.0 · 2026
   ============================================= */

/* VARIABLES */
:root {
  --navy:    #0C2D5E;
  --navy2:   #0a2450;
  --navy3:   #071a3a;
  --gold:    #C9912A;
  --gold2:   #dfa43e;
  --cream:   #F8F6F1;
  --charcoal:#2C2C2A;
  --muted:   #6B6B68;
  --green:   #0F6E56;
  --soft:    #EEF2F8;
  --white:   #ffffff;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; }
ul { list-style: none; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy3); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =============================================
   LOGO C
   ============================================= */
.logo-c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-decoration: none;
}
.logo-c-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}
.logo-c-name em { color: var(--gold); font-style: italic; }
.logo-c-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,145,42,0.2), transparent);
}
.logo-c-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  color: rgba(255,255,255,0.35);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.logo-c.dark .logo-c-name { color: var(--navy); }
.logo-c.dark .logo-c-sub  { color: rgba(12,45,94,0.4); }

/* =============================================
   MODAL EDITOR TESTIMONIOS
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,26,58,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 6px;
  width: 560px;
  max-width: 100%;
  overflow: hidden;
}
.modal-hd {
  background: var(--navy);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-hd h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}
.modal-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  width: 28px;
  height: 28px;
  border-radius: 3px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.modal-body { padding: 1.75rem; }
.field-group { margin-bottom: 1.25rem; }
.field-group label {
  display: block;
  font-size: 10.5px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}
.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(12,45,94,0.15);
  border-radius: 3px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border .2s;
  -webkit-appearance: none;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus { border-color: rgba(201,145,42,0.5); }
.field-group textarea {
  resize: vertical;
  min-height: 90px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.6;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-ft {
  padding: 1rem 1.75rem;
  background: var(--soft);
  border-top: 1px solid rgba(12,45,94,0.08);
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
}
.btn-save {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border: none;
  border-radius: 3px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.btn-save:hover { background: var(--gold2); }
.btn-cancel {
  background: transparent;
  color: var(--muted);
  padding: 9px 18px;
  border: 1px solid rgba(12,45,94,0.15);
  border-radius: 3px;
  font-size: 13.5px;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
}
.btn-cancel:hover { border-color: var(--muted); }

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(7,26,58,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  transition: color .2s;
  letter-spacing: .02em;
}
.nav-links a:hover { color: #fff; }
.nav-pill {
  background: rgba(201,145,42,0.12) !important;
  border: 1px solid rgba(201,145,42,0.35) !important;
  color: var(--gold) !important;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px !important;
  letter-spacing: .07em;
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--navy3);
  display: flex;
  align-items: center;
  padding-top: 66px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,145,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,145,42,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,145,42,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,145,42,0.1);
  border: 1px solid rgba(201,145,42,0.28);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}
.hero-eyebrow span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.17;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
}
.hero-desc strong { color: rgba(255,255,255,0.88); font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 2.75rem; flex-wrap: wrap; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 26px;
  border: none;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 26px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); }
.hero-trust { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.ht { display: flex; align-items: center; gap: 7px; }
.ht-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.ht span { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.45); }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,145,42,0.18);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 45%, var(--gold2) 55%, transparent 95%);
}
.hc-hd { padding: 1.5rem 1.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hc-lbl { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-bottom: .5rem; }
.hc-ttl { font-family: 'Playfair Display', serif; font-size: 15px; color: #fff; font-weight: 600; }
.hc-body { padding: 1.25rem 1.75rem; }
.hc-row { display: flex; justify-content: space-between; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hc-row:last-of-type { border-bottom: none; }
.hc-rl { font-size: 12px; color: rgba(255,255,255,0.38); max-width: 145px; line-height: 1.4; }
.hc-rv { font-family: 'Playfair Display', serif; font-size: 23px; color: #fff; font-weight: 600; }
.hc-ru { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); margin-left: 3px; }
.hc-ft { padding: 1rem 1.75rem; background: rgba(15,110,86,0.1); border-top: 1px solid rgba(15,110,86,0.2); display: flex; align-items: center; gap: 10px; }
.hc-ft-ico { width: 24px; height: 24px; background: var(--green); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; font-family: 'IBM Plex Mono', monospace; flex-shrink: 0; }
.hc-ft-txt { font-size: 11px; color: rgba(255,255,255,0.6); line-height: 1.4; }
.hc-ft-txt strong { color: #fff; font-size: 12px; display: block; }

/* =============================================
   TRUST BAR
   ============================================= */
.tbar { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.1rem 0; }
.tbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.tbar-stat { text-align: center; flex: 1; min-width: 90px; }
.tbar-n { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); font-weight: 600; line-height: 1; }
.tbar-l { font-size: 10.5px; color: rgba(255,255,255,0.38); font-family: 'IBM Plex Mono', monospace; margin-top: 3px; letter-spacing: .04em; }
.tbar-div { width: 1px; height: 32px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.tbar-badge { display: flex; align-items: center; gap: 7px; background: rgba(201,145,42,0.07); border: 1px solid rgba(201,145,42,0.22); border-radius: 2px; padding: 7px 13px; }
.tbar-badge span { font-size: 11px; color: var(--gold); font-family: 'IBM Plex Mono', monospace; letter-spacing: .05em; }

/* =============================================
   SECCIONES COMUNES
   ============================================= */
section { padding: 5.5rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.eyebrow { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); letter-spacing: .14em; text-transform: uppercase; margin-bottom: .65rem; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 2.8vw, 2.7rem); font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: .85rem; }
.sec-title.light { color: #fff; }
.sec-sub { font-size: 15.5px; color: var(--muted); line-height: 1.75; max-width: 540px; }
.sec-sub.light { color: rgba(255,255,255,0.55); }
.sec-hd { margin-bottom: 3.25rem; }

/* =============================================
   SERVICIOS
   ============================================= */
.services { background: #fff; }
.svc-tabs { display: flex; gap: 2px; background: rgba(12,45,94,0.07); }
.svc-tab { flex: 1; padding: 1rem 1.5rem; background: #fff; border: none; font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--muted); transition: all .2s; text-align: left; border-bottom: 2px solid transparent; }
.svc-tab:hover { background: var(--soft); }
.svc-tab.active { color: var(--navy); font-weight: 500; background: var(--soft); border-bottom-color: var(--gold); }
.svc-tab-n { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: var(--gold); opacity: .7; display: block; margin-bottom: 3px; }
.svc-tab-ana { font-family: 'IBM Plex Mono', monospace; font-size: 10px; background: rgba(12,45,94,0.07); color: var(--navy); padding: 2px 7px; border-radius: 2px; margin-left: 8px; opacity: .6; }
.svc-panels { background: var(--soft); }
.svc-panel { display: none; padding: 3rem 0; }
.svc-panel.active { display: block; }
.svc-pg { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.svc-main h3 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--navy); font-weight: 600; margin-bottom: .75rem; line-height: 1.25; }
.ana-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(12,45,94,0.08); border: 1px solid rgba(12,45,94,0.15); padding: 5px 12px; border-radius: 2px; margin-bottom: 1.25rem; }
.ana-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.ana-tag span { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; color: var(--navy); opacity: .75; letter-spacing: .06em; }
.svc-main p { font-size: 14.5px; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.svc-ml { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; margin-top: 1.5rem; opacity: .8; }
.methods { display: flex; flex-wrap: wrap; gap: 6px; }
.mtag { font-size: 11px; font-family: 'IBM Plex Mono', monospace; background: #fff; border: 1px solid rgba(12,45,94,0.12); color: var(--navy); padding: 4px 10px; border-radius: 2px; opacity: .8; }
.svc-aside { display: flex; flex-direction: column; gap: 1rem; }
.svc-box { background: #fff; border: 1px solid rgba(12,45,94,0.08); border-radius: 4px; padding: 1.5rem; border-left: 3px solid var(--gold); }
.svc-box h4 { font-size: 13.5px; font-weight: 500; color: var(--navy); margin-bottom: .5rem; }
.svc-box p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.svc-box ul { display: flex; flex-direction: column; gap: 6px; margin-top: .5rem; }
.svc-box ul li { font-size: 12.5px; color: var(--charcoal); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.svc-box ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.svc-cta-lnk { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; padding: 12px 22px; border-radius: 3px; font-size: 13.5px; font-weight: 500; transition: background .2s; margin-top: 1.75rem; }
.svc-cta-lnk:hover { background: var(--navy2); }
.svc-cta-lnk span { color: var(--gold); }

/* =============================================
   STANDARDS BAR
   ============================================= */
.std-bar { background: var(--navy); padding: 2.5rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.std-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.std-lbl { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.3); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.std-div { width: 1px; height: 22px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.std-badge { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 2px; padding: 7px 14px; display: flex; align-items: center; gap: 7px; }
.std-chk { width: 13px; height: 13px; border-radius: 50%; background: rgba(15,110,86,0.25); border: 1px solid var(--green); display: flex; align-items: center; justify-content: center; font-size: 7px; color: var(--green); flex-shrink: 0; }
.std-badge span { font-size: 11.5px; font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.65); }

/* =============================================
   PROCESO
   ============================================= */
.process { background: var(--navy); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.proc-steps { display: flex; flex-direction: column; gap: 2px; }
.proc-step { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 4px; padding: 1.25rem 1.5rem; cursor: pointer; transition: all .2s; }
.proc-step:hover, .proc-step.active { background: rgba(201,145,42,0.07); border-color: rgba(201,145,42,0.25); }
.proc-step.active { border-left: 3px solid var(--gold); }
.proc-step-hd { display: flex; align-items: center; gap: 1rem; }
.proc-n { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold); min-width: 26px; opacity: .7; }
.proc-title { font-size: 14px; color: #fff; font-weight: 500; }
.proc-desc { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: .5rem; margin-left: 42px; line-height: 1.5; display: none; }
.proc-step.active .proc-desc { display: block; color: rgba(255,255,255,0.55); }
.proc-content p { color: rgba(255,255,255,0.58); font-size: 15px; line-height: 1.8; margin-bottom: 1rem; }
.proc-highlight { background: rgba(201,145,42,0.08); border: 1px solid rgba(201,145,42,0.2); border-radius: 4px; padding: 1.25rem 1.5rem; margin-top: 1.5rem; }
.proc-highlight p { color: rgba(255,255,255,0.7) !important; font-size: 14px !important; margin-bottom: 0 !important; }
.proc-highlight strong { color: var(--gold); }

/* =============================================
   TESTIMONIOS
   ============================================= */
.proof { background: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.proof-card { background: #fff; border: 1px solid rgba(12,45,94,0.08); border-radius: 5px; overflow: hidden; position: relative; }
.proof-card::after { content: ''; position: absolute; bottom: 0; left: 1.75rem; right: 1.75rem; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.proof-edit-bar { background: rgba(201,145,42,0.06); border-bottom: 1px solid rgba(201,145,42,0.15); padding: 6px 12px; display: flex; align-items: center; justify-content: space-between; }
.proof-edit-lbl { font-size: 9.5px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.proof-edit-btn { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); background: none; border: 1px solid rgba(201,145,42,0.3); padding: 3px 10px; border-radius: 2px; transition: all .2s; }
.proof-edit-btn:hover { background: rgba(201,145,42,0.1); }
.proof-inner { padding: 1.75rem; }
.proof-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.1rem; }
.proof-stars { display: flex; gap: 3px; }
.proof-star { font-size: 12px; color: var(--gold); }
.proof-tag { font-size: 10px; font-family: 'IBM Plex Mono', monospace; background: var(--soft); color: var(--navy); padding: 3px 8px; border-radius: 2px; opacity: .7; }
.proof-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; color: var(--navy); line-height: 1.65; margin-bottom: 1.4rem; }
.proof-client { display: flex; align-items: center; gap: 10px; }
.proof-av { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--gold); font-family: 'IBM Plex Mono', monospace; flex-shrink: 0; }
.proof-name { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.proof-role { font-size: 11px; color: var(--muted); }
.proof-sector { margin-top: 4px; display: inline-block; font-size: 9.5px; font-family: 'IBM Plex Mono', monospace; color: var(--green); background: rgba(15,110,86,0.08); padding: 2px 7px; border-radius: 2px; }

/* =============================================
   EQUIPO
   ============================================= */
.team { background: var(--navy3); }
.team-layout { display: grid; grid-template-columns: 300px 1fr; gap: 5rem; align-items: start; }
.team-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,145,42,0.16); border-radius: 5px; overflow: hidden; }
.team-card-top { padding: 2.25rem 2rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.06); }
.team-av { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg,#0a2450,#1a4a8a); border: 2.5px solid var(--gold); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); font-weight: 600; }
.team-name { font-family: 'Playfair Display', serif; font-size: 21px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.team-role { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: .06em; opacity: .85; }
.team-certs { padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: 10px; }
.tcert { display: flex; align-items: flex-start; gap: 8px; }
.tcert-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); margin-top: 5px; flex-shrink: 0; }
.tcert-txt { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.45; }
.team-bio p { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.85; margin-bottom: .9rem; }
.team-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .9rem; margin-top: 2rem; }
.ts-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,145,42,0.14); border-radius: 3px; padding: 1.1rem; text-align: center; }
.ts-val { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold); font-weight: 600; }
.ts-lbl { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.35); margin-top: 3px; }
.team-ctas { display: flex; gap: .9rem; margin-top: 2rem; flex-wrap: wrap; }
.tcta { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 3px; font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: all .2s; border: none; }
.tcta.gold { background: var(--gold); color: var(--navy); }
.tcta.gold:hover { background: var(--gold2); }
.tcta.ghost { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.2); }
.tcta.ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* =============================================
   SEGMENTOS
   ============================================= */
.segments { background: #fff; }
.seg-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: rgba(12,45,94,0.07); }
.seg-card { background: #fff; padding: 2.5rem; cursor: pointer; transition: background .2s; position: relative; overflow: hidden; }
.seg-card:hover { background: var(--soft); }
.seg-bg-n { position: absolute; top: -10px; right: 10px; font-family: 'Playfair Display', serif; font-size: 110px; color: rgba(12,45,94,0.04); font-weight: 700; pointer-events: none; line-height: 1; }
.seg-tag { display: inline-block; font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); background: rgba(201,145,42,0.08); border: 1px solid rgba(201,145,42,0.2); padding: 3px 10px; border-radius: 2px; letter-spacing: .07em; margin-bottom: 1rem; }
.seg-title { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--navy); margin-bottom: .65rem; font-weight: 600; }
.seg-desc { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.seg-pts { display: flex; flex-direction: column; gap: 7px; }
.seg-pt { font-size: 13px; color: var(--charcoal); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.seg-pt::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.seg-act { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gold); font-weight: 500; transition: gap .2s; }
.seg-card:hover .seg-act { gap: 10px; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-s { background: var(--navy3); padding: 5.5rem 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,145,42,0.025) 1px,transparent 1px), linear-gradient(90deg,rgba(201,145,42,0.025) 1px,transparent 1px); background-size: 40px 40px; }
.cta-wrap { max-width: 860px; margin: 0 auto; padding: 0 2rem; text-align: center; position: relative; }
.cta-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 2.9rem); color: #fff; font-weight: 600; line-height: 1.2; margin-bottom: .9rem; }
.cta-wrap h2 em { color: var(--gold); font-style: italic; }
.cta-wrap > p { color: rgba(255,255,255,0.5); font-size: 15.5px; line-height: 1.7; margin-bottom: 2.25rem; }
.cta-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,145,42,0.18); border-radius: 5px; padding: 2rem; text-align: left; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cf-g { display: flex; flex-direction: column; gap: 5px; }
.cf-g label { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: rgba(255,255,255,0.35); letter-spacing: .09em; text-transform: uppercase; }
.cf-g input, .cf-g select { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; padding: 10px 13px; color: #fff; font-size: 13.5px; font-family: 'DM Sans', sans-serif; outline: none; transition: border .2s; -webkit-appearance: none; }
.cf-g input::placeholder { color: rgba(255,255,255,0.28); }
.cf-g select option { background: #071a3a; color: #fff; }
.cf-g input:focus, .cf-g select:focus { border-color: rgba(201,145,42,0.45); }
.cf-full { grid-column: 1 / -1; }
.cf-submit { width: 100%; background: var(--gold); color: var(--navy); padding: 13px; border: none; border-radius: 2px; font-size: 14.5px; font-weight: 500; font-family: 'DM Sans', sans-serif; transition: background .2s; margin-top: .5rem; }
.cf-submit:hover { background: var(--gold2); }
.cf-note { text-align: center; margin-top: .65rem; font-size: 10.5px; color: rgba(255,255,255,0.22); font-family: 'IBM Plex Mono', monospace; }
.cta-alt { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cta-alt a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.42); font-family: 'IBM Plex Mono', monospace; transition: color .2s; }
.cta-alt a:hover { color: rgba(255,255,255,0.7); }
.wa-dot { width: 20px; height: 20px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--navy3); border-top: 1px solid rgba(255,255,255,0.05); padding: 2.75rem 0 1.75rem; }
.foot-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.foot-top { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.foot-brand p { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: .65rem; }
.foot-col h4 { font-size: 10px; font-family: 'IBM Plex Mono', monospace; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; opacity: .75; margin-bottom: .9rem; }
.foot-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 7px; transition: color .2s; }
.foot-col a:hover { color: rgba(255,255,255,0.75); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; flex-wrap: wrap; gap: .75rem; }
.foot-bottom p { font-size: 10.5px; color: rgba(255,255,255,0.22); font-family: 'IBM Plex Mono', monospace; }
.foot-lnks { display: flex; gap: 1.5rem; }
.foot-lnks a { font-size: 10.5px; color: rgba(255,255,255,0.22); font-family: 'IBM Plex Mono', monospace; transition: color .2s; }
.foot-lnks a:hover { color: rgba(255,255,255,0.5); }

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { opacity: 0; animation: fadeUp .65s ease forwards; }
.hero-eyebrow  { animation-delay: .08s; }
.hero h1       { animation-delay: .22s; }
.hero-desc     { animation-delay: .36s; }
.hero-actions  { animation-delay: .50s; }
.hero-trust    { animation-delay: .62s; }
.hero-card     { opacity: 0; animation: fadeUp .65s .35s ease forwards; }

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

@media (max-width: 880px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-card        { display: none; }
  .process-grid     { grid-template-columns: 1fr; }
  .team-layout      { grid-template-columns: 1fr; }
  .svc-pg           { grid-template-columns: 1fr; }
  .proof-grid       { grid-template-columns: 1fr; }
  .seg-grid         { grid-template-columns: 1fr; }
  .foot-top         { grid-template-columns: 1fr; }
  .cf-grid          { grid-template-columns: 1fr; }
  .tbar-div         { display: none; }
  .svc-tabs         { flex-direction: column; }
  .nav-links        { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(7,26,58,0.98); padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open   { display: flex; }
  .nav-hamburger    { display: flex; }
  .field-row        { grid-template-columns: 1fr; }
  .std-inner        { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .sec-title { font-size: 1.75rem; }
  .nav-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  section { padding: 3.5rem 0; }
}

/* =============================================
   FOTO NÉSTOR — Sección Equipo
   ============================================= */
.team-av-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  margin: 0 auto 1.25rem;
  display: block;
  box-shadow: 0 0 0 6px rgba(201,145,42,0.12);
}
