/* ============================================
   GALA HR - PÁGINA DE NOSOTROS
   Capital humano + tecnología + atención humana
   ============================================ */
/* RESET & BASE */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
/* Fonts loaded via footer preconnect */
:root{
  --gh-dark:#1a0a2e;
  --gh-dark-2:#2d1b4e;
  --gh-dark-3:#0f0518;
  --gh-purple:#7d6cff;
  --gh-purple-light:#a78bfa;
  --gh-purple-soft:#ede9fe;
  --gh-violet:#8b5cf6;
  --gh-accent:#c084fc;
  --gh-pink:#9b26c4;
  --gh-green:#22c55e;
  --gh-green-dark:#16a34a;
  --gh-light:#faf9fc;
  --gh-light-2:#f3f1f9;
  --gh-text:#1e1b2e;
  --gh-text-muted:#6b7280;
  --gh-white-80:rgba(255,255,255,.8);
  --gh-white-60:rgba(255,255,255,.6);
  --gh-white-10:rgba(255,255,255,.1);
  --gh-white-05:rgba(255,255,255,.05);
  --gh-glass-bg:rgba(255,255,255,.05);
  --gh-glass-border:rgba(255,255,255,.1);
  --gh-glass-shadow:0 8px 32px rgba(0,0,0,.3);
  --gh-radius:20px;
  --gh-radius-sm:12px;
  --gh-radius-lg:28px;
}
.gh-nosotros-page{
  font-family:'DM Sans',system-ui,sans-serif;
  color:var(--gh-text);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.gh-nosotros-page img{max-width:100%;height:auto;display:block}
.gh-nosotros-page a{text-decoration:none;color:inherit;transition:all .3s cubic-bezier(.4,0,.2,1)}
.gh-nosotros-page *{box-sizing:border-box}
h1,h2,h3,h4,.gh-stat-value,.gh-hero-badge,.gh-counter-value{
  font-family:'Sora','Outfit',system-ui,sans-serif;
}
/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.gh-nosotros-page::before{
  content:'';
  position:fixed;
  top:0;left:0;width:100%;height:100%;
  pointer-events:none;
  z-index:9999;
  opacity:.018;
  /* Noise texture removed for mobile performance */
}
/* ============================================
   CONTAINER
   ============================================ */
.gh-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
  position:relative;
  z-index:1;
}
/* ============================================
   HERO SECTION
   ============================================ */
.gh-hero{
  position:relative;
  padding:120px 24px 88px;
  overflow:hidden;
  background:linear-gradient(135deg,#1a0a2e 0%,#0f0518 50%,#1a0a2e 100%);
  min-height:620px;
  display:flex;
  align-items:center;
}
.gh-hero::before{
  content:'';
  position:absolute;
  inset:-50%;
  width:200%;height:200%;
  background:
    radial-gradient(600px 400px at 30% 20%,rgba(155,38,196,.35),transparent 60%),
    radial-gradient(500px 350px at 70% 40%,rgba(125,108,255,.28),transparent 60%),
    radial-gradient(450px 300px at 50% 70%,rgba(155,38,196,.22),transparent 55%);
  animation:gh-plasmaMove 18s ease-in-out infinite;
  z-index:0;
  will-change:transform;
}
@keyframes gh-plasmaMove{
  0%{transform:translate(0,0) scale(1) rotate(0deg)}
  25%{transform:translate(5%,-3%) scale(1.05) rotate(2deg)}
  50%{transform:translate(-3%,5%) scale(.97) rotate(-1deg)}
  75%{transform:translate(4%,2%) scale(1.03) rotate(1.5deg)}
  100%{transform:translate(0,0) scale(1) rotate(0deg)}
}
.gh-hero-content{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:64px;
  align-items:center;
  width:100%;
  position:relative;
  z-index:1;
}
.gh-hero-logo{display:none!important}
.gh-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(124,92,252,.1);
  color:var(--gh-purple-light);
  border:1px solid rgba(124,92,252,.25);
  border-radius:100px;
  padding:8px 20px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:24px;
  opacity:0;
  animation:gh-fadeUp .7s ease .15s forwards;
}
.gh-hero-badge::before{
  content:'';
  width:8px;height:8px;
  background:var(--gh-purple);
  border-radius:50%;
  animation:gh-pulse 2s ease-in-out infinite;
}
@keyframes gh-pulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(.8)}
}
.gh-hero-title{
  font-family:'Sora','Outfit',system-ui,sans-serif;
  font-size:52px;
  font-weight:700;
  line-height:1.1;
  background:linear-gradient(135deg,#fff 0%,rgb(125,108,255) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  margin-bottom:20px;
  letter-spacing:-.02em;
  opacity:0;
  animation:gh-fadeUp .7s ease .25s forwards;
}
.gh-hero-subtitle{
  font-size:17px;
  color:var(--gh-white-60);
  line-height:1.75;
  margin-bottom:36px;
  max-width:520px;
  opacity:0;
  animation:gh-fadeUp .7s ease .35s forwards;
}
.gh-hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  opacity:0;
  animation:gh-fadeUp .7s ease .45s forwards;
}
.gh-hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  animation:gh-fadeUp .7s ease .35s forwards;
}
.gh-hero-img-container{
  position:relative;
  width:100%;
  max-width:500px;
  overflow:visible;
}
.gh-hero-img{
  width:100%;
  border-radius:var(--gh-radius-lg);
  box-shadow:
    0 24px 64px rgba(124,92,252,.18),
    0 0 0 1px rgba(124,92,252,.1);
}
.gh-hero-float-card{
  position:absolute;
  bottom:-20px;right:-20px;
  background:var(--gh-glass-bg);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid var(--gh-glass-border);
  border-radius:20px;
  padding:20px 28px;
  display:flex;align-items:center;gap:16px;
  color:#fff;
  animation:gh-floatCard 4s ease-in-out infinite;
  z-index:2;
  box-shadow:var(--gh-glass-shadow);
}
.gh-float-icon{
  width:40px;height:40px;
  background:linear-gradient(135deg,var(--gh-purple),var(--gh-violet));
  border-radius:var(--gh-radius-sm);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.gh-float-icon svg{width:20px;height:20px;fill:#fff}
.gh-float-text strong{display:block;font-size:14px;font-family:'Outfit',sans-serif}
.gh-float-text span{font-size:12px;color:var(--gh-white-60)}
@keyframes gh-floatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
.gh-hero-stats{
  display:flex;
  gap:36px;
  margin-top:40px;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,.06);
  opacity:0;
  animation:gh-fadeUp .7s ease .55s forwards;
}
.gh-stat-item{text-align:left}
.gh-stat-value{
  font-family:'Sora','Outfit',system-ui,sans-serif;
  font-size:32px;
  font-weight:800;
  background:linear-gradient(135deg,var(--gh-purple),#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-.02em;
}
.gh-stat-label{font-size:13px;color:var(--gh-white-60);margin-top:2px}
/* ============================================
   BUTTONS
   ============================================ */
.gh-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:'Outfit',system-ui,sans-serif;
  font-size:15px;
  font-weight:600;
  padding:14px 28px;
  border-radius:var(--gh-radius-sm);
  cursor:pointer;
  border:none;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  text-decoration:none;
  letter-spacing:.01em;
}
.gh-btn-primary{
  background:linear-gradient(135deg,var(--gh-purple),var(--gh-pink));
  color:#fff!important;
  box-shadow:0 4px 20px rgba(125,108,255,.25);
}
.gh-btn-primary:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 8px 32px rgba(125,108,255,.4),0 0 16px rgba(155,38,196,.2);
  filter:brightness(1.1);
  color:#fff;
}
.gh-btn-primary:active{
  transform:translateY(-1px) scale(.98);
  box-shadow:0 4px 16px rgba(125,108,255,.3);
}
.gh-btn-secondary{
  background:var(--gh-glass-bg);
  color:#fff!important;
  border:1px solid var(--gh-glass-border);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.gh-btn-secondary:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
  color:#fff!important;
  transform:translateY(-2px);
  box-shadow:0 4px 24px rgba(125,108,255,.15);
}
.gh-btn-secondary:active{transform:translateY(0)}
.gh-btn-whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  box-shadow:0 4px 20px rgba(37,211,102,.25);
}
.gh-btn-whatsapp:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 8px 32px rgba(37,211,102,.4),0 0 16px rgba(18,140,126,.2);
  filter:brightness(1.1);
  color:#fff;
}
.gh-btn-whatsapp:active{
  transform:translateY(-1px) scale(.98);
  box-shadow:0 4px 16px rgba(37,211,102,.3);
}
.gh-btn-outline{
  background:transparent;
  color:var(--gh-purple);
  border:1.5px solid rgba(124,92,252,.3);
}
.gh-btn-outline:hover{
  background:rgba(124,92,252,.08);
  border-color:var(--gh-purple);
  color:var(--gh-purple);
  transform:translateY(-2px);
  box-shadow:0 4px 20px rgba(124,92,252,.1);
}
.gh-btn-outline:active{transform:translateY(0)}
.gh-btn svg{width:18px;height:18px;fill:currentColor;flex-shrink:0}
.gh-btn span{line-height:1}
/* ============================================
   SECTION STYLES
   ============================================ */
.gh-section-light{
  position:relative;
  padding:96px 24px;
  background:var(--gh-light);
  z-index:1;
}
.gh-section-dark{
  position:relative;
  padding:96px 24px;
  background:linear-gradient(135deg,#1a0a2e 0%,#0f0518 50%,#1a0a2e 100%);
  color:#fff;
  z-index:1;
  overflow:hidden;
}
.gh-section-dark::before{
  content:'';
  position:absolute;
  inset:-50%;
  width:200%;height:200%;
  background:
    radial-gradient(500px 350px at 30% 30%,rgba(155,38,196,.2),transparent 60%),
    radial-gradient(450px 300px at 70% 60%,rgba(125,108,255,.15),transparent 60%);
  animation:gh-plasmaMove 18s ease-in-out infinite;
  z-index:0;
  pointer-events:none;
  will-change:transform;
}
.gh-section-dark>.gh-container{position:relative;z-index:1}
.gh-section-light::before{
  content:'';
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:min(200px,40%);
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gh-purple),transparent);
  opacity:.3;
}
.gh-section-header{
  text-align:center;
  margin-bottom:60px;
}
.gh-section-tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family:'Outfit',sans-serif;
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gh-purple);
  margin-bottom:16px;
}
.gh-section-tag::before{
  content:'';
  width:24px;height:1.5px;
  background:var(--gh-purple);
}
.gh-section-header h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:14px;
  letter-spacing:-.02em;
}
.gh-section-dark .gh-section-header h2{color:#fff}
.gh-section-light .gh-section-header h2{color:var(--gh-text)}
.gh-section-header p{
  font-size:17px;
  color:var(--gh-text-muted);
  max-width:580px;
  margin:0 auto;
  line-height:1.7;
}
.gh-section-dark .gh-section-header p{color:var(--gh-white-60)}
.gh-section-dark .gh-section-tag{color:var(--gh-purple-light)}
/* ============================================
   QUIÉNES SOMOS — About Intro (2 cols)
   ============================================ */
.gh-about-intro{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:56px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}
.gh-about-img{
  border-radius:var(--gh-radius-lg);
  box-shadow:0 16px 48px rgba(0,0,0,.08),0 0 0 1px rgba(124,92,252,.06);
  overflow:hidden;
  position:relative;
}
.gh-about-img img{
  width:100%;
  display:block;
  border-radius:var(--gh-radius-lg);
}
.gh-about-text .gh-section-tag{justify-content:flex-start}
.gh-about-text h2{
  font-size:36px;
  font-weight:700;
  color:var(--gh-text);
  margin-bottom:20px;
  letter-spacing:-.02em;
  line-height:1.15;
}
.gh-about-text p{
  font-size:16px;
  color:var(--gh-text-muted);
  line-height:1.75;
  margin-bottom:20px;
}
.gh-about-mini-stats{
  display:flex;
  gap:40px;
  margin-top:32px;
  padding-top:28px;
  border-top:1px solid rgba(0,0,0,.06);
}
.gh-about-mini-stat{text-align:left}
.gh-about-mini-stat .gh-mini-value{
  font-family:'Sora','Outfit',system-ui,sans-serif;
  font-size:28px;
  font-weight:800;
  background:linear-gradient(135deg,var(--gh-purple),var(--gh-pink));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-.02em;
}
.gh-about-mini-stat .gh-mini-label{
  font-size:13px;
  color:var(--gh-text-muted);
  margin-top:2px;
}
/* ============================================
   DIFERENCIADORES — Dark glassmorphism cards
   ============================================ */
.gh-diff-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:1100px;
  margin:0 auto;
  perspective:1000px;
}
.gh-diff-grid br{display:none}
.gh-diff-card{
  background:var(--gh-glass-bg);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid var(--gh-glass-border);
  border-radius:var(--gh-radius);
  padding:40px 36px;
  position:relative;
  overflow:hidden;
  transition:all .45s cubic-bezier(.4,0,.2,1);
  transform-style:preserve-3d;
  will-change:transform;
}
.gh-diff-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  border-radius:var(--gh-radius) var(--gh-radius) 0 0;
}
.gh-diff-card-tech::before{
  background:linear-gradient(90deg,var(--gh-purple),var(--gh-accent));
}
.gh-diff-card-human::before{
  background:linear-gradient(90deg,var(--gh-pink),var(--gh-purple-light));
}
/* Shine overlay */
.gh-diff-card::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.06) 45%,rgba(255,255,255,.02) 50%,transparent 55%);
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
  z-index:2;
}
.gh-diff-card:hover{
  transform:translateY(-8px) rotateX(3deg) rotateY(-2deg) scale(1.02);
  box-shadow:0 24px 56px rgba(0,0,0,.3),0 0 0 1px rgba(124,92,252,.15);
  border-color:rgba(124,92,252,.2);
}
.gh-diff-card:hover::after{opacity:1}
.gh-diff-icon{
  width:56px;height:56px;
  border-radius:var(--gh-radius-sm);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;
  transform:translateZ(20px);
  transition:transform .4s ease,box-shadow .4s ease;
}
.gh-diff-card:hover .gh-diff-icon{
  transform:translateZ(30px) scale(1.08);
  box-shadow:0 6px 20px rgba(0,0,0,.3);
}
.gh-diff-icon svg{width:28px;height:28px;fill:#fff}
.gh-diff-icon-tech{background:linear-gradient(135deg,var(--gh-purple),var(--gh-violet))}
.gh-diff-icon-human{background:linear-gradient(135deg,var(--gh-pink),var(--gh-accent))}
.gh-diff-card h3{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:-.01em;
}
.gh-diff-card>p{
  font-size:15px;
  color:var(--gh-white-60);
  line-height:1.7;
  margin-bottom:24px;
}
.gh-diff-features{
  list-style:none;
  padding:0;
}
.gh-diff-features li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:10px 0;
  font-size:14px;
  color:var(--gh-white-80);
  line-height:1.55;
  border-bottom:1px solid rgba(255,255,255,.04);
}
.gh-diff-features li:last-child{border-bottom:none}
.gh-diff-features li svg{
  width:18px;height:18px;
  fill:var(--gh-purple-light);
  flex-shrink:0;
  margin-top:1px;
}
.gh-diff-features li span{flex:1}
/* ============================================
   MISIÓN / VISIÓN / VALORES — Light
   ============================================ */
.gh-mvv-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1200px;
  margin:0 auto 40px;
}
.gh-mvv-grid br{display:none}
.gh-mvv-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:var(--gh-radius);
  padding:36px 28px;
  text-align:center;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  position:relative;
  overflow:hidden;
}
.gh-mvv-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg,var(--gh-purple),var(--gh-accent));
  opacity:0;
  transition:opacity .35s ease;
}
.gh-mvv-card:hover{
  box-shadow:0 16px 48px rgba(0,0,0,.1),0 0 0 1px rgba(124,92,252,.1);
  transform:translateY(-6px) scale(1.01);
  border-color:transparent;
}
.gh-mvv-card:hover::before{opacity:1}
.gh-mvv-card:hover .gh-mvv-icon{
  transform:scale(1.1);
  box-shadow:0 4px 16px rgba(124,92,252,.15);
}
.gh-mvv-icon{
  width:56px;height:56px;
  background:var(--gh-purple-soft);
  border-radius:var(--gh-radius-sm);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  transition:transform .3s ease,box-shadow .3s ease;
}
.gh-mvv-icon svg{width:26px;height:26px;fill:var(--gh-purple)}
.gh-mvv-card h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  color:var(--gh-text);
}
.gh-mvv-card p{
  font-size:14px;
  color:var(--gh-text-muted);
  line-height:1.7;
}
/* Value pills */
.gh-values-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:700px;
  margin:0 auto;
}
.gh-values-tags br{display:none}
.gh-value-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 22px;
  background:#fff;
  border:1px solid rgba(124,92,252,.12);
  border-radius:100px;
  font-family:'Outfit',sans-serif;
  font-size:14px;
  font-weight:600;
  color:var(--gh-purple);
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.gh-value-pill:hover{
  background:var(--gh-purple-soft);
  border-color:var(--gh-purple);
  transform:translateY(-2px);
  box-shadow:0 4px 16px rgba(124,92,252,.1);
}
.gh-value-pill svg{width:16px;height:16px;fill:var(--gh-purple)}
/* ============================================
   TIMELINE — Dark con plasma
   ============================================ */
.gh-timeline{
  position:relative;
  max-width:900px;
  margin:0 auto;
  padding:20px 0;
}
/* Línea vertical central */
.gh-timeline::before{
  content:'';
  position:absolute;
  left:50%;
  top:0;bottom:0;
  width:2px;
  background:linear-gradient(180deg,transparent,var(--gh-purple),var(--gh-purple-light),transparent);
  transform:translateX(-50%);
}
.gh-timeline-item{
  display:flex;
  align-items:flex-start;
  margin-bottom:48px;
  position:relative;
}
.gh-timeline-item:last-child{margin-bottom:0}
/* Dot en la línea */
.gh-timeline-dot{
  position:absolute;
  left:50%;
  top:24px;
  width:16px;height:16px;
  background:var(--gh-purple);
  border:3px solid var(--gh-dark);
  border-radius:50%;
  transform:translateX(-50%);
  z-index:2;
  box-shadow:0 0 0 4px rgba(125,108,255,.2);
  transition:all .3s ease;
}
.gh-timeline-item:hover .gh-timeline-dot{
  background:var(--gh-accent);
  box-shadow:0 0 0 6px rgba(192,132,252,.3);
  transform:translateX(-50%) scale(1.2);
}
/* Items alternados */
.gh-timeline-item:nth-child(odd){
  flex-direction:row;
  padding-right:calc(50% + 40px);
}
.gh-timeline-item:nth-child(even){
  flex-direction:row-reverse;
  padding-left:calc(50% + 40px);
}
.gh-timeline-content{
  background:var(--gh-glass-bg);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid var(--gh-glass-border);
  border-radius:var(--gh-radius);
  padding:28px;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  width:100%;
}
.gh-timeline-content:hover{
  border-color:rgba(124,92,252,.2);
  box-shadow:0 12px 36px rgba(0,0,0,.2);
  transform:translateY(-4px);
}
.gh-timeline-year{
  display:inline-block;
  font-family:'Sora','Outfit',sans-serif;
  font-size:13px;
  font-weight:700;
  color:var(--gh-purple-light);
  background:rgba(124,92,252,.12);
  border:1px solid rgba(124,92,252,.2);
  border-radius:100px;
  padding:4px 14px;
  margin-bottom:12px;
  letter-spacing:.02em;
}
.gh-timeline-content h3{
  font-size:18px;
  font-weight:700;
  color:#fff;
  margin-bottom:8px;
}
.gh-timeline-content p{
  font-size:14px;
  color:var(--gh-white-60);
  line-height:1.7;
}
/* ============================================
   CIFRAS / COUNTERS — Light
   ============================================ */
.gh-counter-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  max-width:1000px;
  margin:0 auto 60px;
}
.gh-counter-grid br{display:none}
.gh-counter-item{
  text-align:center;
  padding:32px 20px;
  position:relative;
}
.gh-counter-item:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0;top:20%;
  height:60%;
  width:1px;
  background:linear-gradient(180deg,transparent,rgba(124,92,252,.2),transparent);
}
.gh-counter-value{
  font-family:'Sora','Outfit',system-ui,sans-serif;
  font-size:42px;
  font-weight:800;
  background:linear-gradient(135deg,var(--gh-purple),var(--gh-pink));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-.02em;
  line-height:1.1;
  margin-bottom:8px;
}
.gh-counter-label{
  font-size:14px;
  color:var(--gh-text-muted);
  font-weight:500;
}
/* ============================================
   CLIENTS SECTION — Dark with gradient top
   ============================================ */
.gh-clients-section{
  position:relative;
  padding:96px 24px 80px;
  background:linear-gradient(180deg,var(--gh-light) 0%,#1a0a2e 15%,#0f0518 50%,#1a0a2e 100%);
  color:#fff;
  z-index:1;
  overflow:hidden;
}
.gh-clients-section::before{
  content:'';
  position:absolute;
  inset:-50%;
  width:200%;height:200%;
  background:
    radial-gradient(500px 350px at 30% 30%,rgba(155,38,196,.15),transparent 60%),
    radial-gradient(450px 300px at 70% 60%,rgba(125,108,255,.1),transparent 60%);
  animation:gh-plasmaMove 18s ease-in-out infinite;
  z-index:0;
  pointer-events:none;
  will-change:transform;
}
.gh-clients-section>.gh-container{position:relative;z-index:1}
.gh-clients-section .gh-section-tag{color:var(--gh-purple-light)}
.gh-clients-section .gh-section-header h2{color:#fff}
.gh-clients-section .gh-section-header p{color:var(--gh-white-60)}
/* Globe + clients layout */
.gh-globe-clients{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:48px;
  max-width:1200px;
  margin:0 auto;
}
/* Spline 3D Globe */
.gh-globe-container{
  display:flex;
  justify-content:center;
  align-items:center;
}
.gh-globe-wrap{
  position:relative;
  width:400px;
  height:400px;
  border-radius:50%;
  overflow:hidden;
}
.gh-globe-wrap iframe{
  width:100%;
  height:100%;
  border:none;
  pointer-events:auto;
  display:block;
}
.gh-globe-wrap::after{
  content:'';
  position:absolute;
  bottom:-20px;left:5%;right:5%;
  height:50px;
  background:radial-gradient(ellipse,rgba(125,108,255,.25),transparent 70%);
  filter:blur(18px);
  pointer-events:none;
  z-index:2;
}
/* Clients carousel — dark variant */
.gh-clients-right{
  display:flex;
  flex-direction:column;
  gap:24px;
  width:100%;
}
.gh-clients-carousel{
  max-width:1200px;
  margin:0 auto;
  overflow:hidden;
  position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 88%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0%,#000 12%,#000 88%,transparent 100%);
}
.gh-clients-track{
  display:flex;
  gap:28px;
  width:max-content;
  animation:gh-scrollLogos 45s linear infinite;
}
.gh-clients-track-reverse{
  animation-direction:reverse;
}
.gh-clients-track:hover{animation-play-state:paused}
@keyframes gh-scrollLogos{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
/* Dark variant logos */
.gh-client-logo{
  background:transparent;
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--gh-radius-sm);
  padding:18px 28px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  height:72px;
  flex-shrink:0;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.gh-client-logo:hover{
  border-color:rgba(124,92,252,.25);
  background:rgba(255,255,255,.05);
}
.gh-client-logo img{
  max-height:36px;
  max-width:110px;
  object-fit:contain;
  filter:brightness(0) invert(1);
  opacity:.6;
  transition:all .3s ease;
}
.gh-client-logo:hover img{
  opacity:1;
}
/* ============================================
   CTA FINAL
   ============================================ */
.gh-cta-card{
  max-width:860px;
  margin:0 auto;
  background:var(--gh-glass-bg);
  backdrop-filter:blur(40px);
  -webkit-backdrop-filter:blur(40px);
  border:1px solid var(--gh-glass-border);
  border-radius:24px;
  padding:56px;
  text-align:center;
  position:relative;
  box-shadow:var(--gh-glass-shadow);
  overflow:hidden;
}
.gh-cta-card::before{
  content:'';
  position:absolute;
  top:-1px;left:50%;
  transform:translateX(-50%);
  width:200px;height:2px;
  background:linear-gradient(90deg,transparent,var(--gh-purple),transparent);
}
.gh-cta-card h2{
  font-size:34px;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:-.02em;
}
.gh-cta-card p{
  font-size:16px;
  color:var(--gh-white-60);
  margin-bottom:32px;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.7;
}
.gh-cta-buttons{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
/* ============================================
   DISCLAIMER
   ============================================ */
.gh-disclaimer{
  max-width:800px;
  margin:0 auto;
  text-align:center;
  font-size:13px;
  color:var(--gh-text-muted);
  line-height:1.7;
  padding:40px 24px;
}
/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes gh-fadeUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.gh-reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s cubic-bezier(.4,0,.2,1),transform .6s cubic-bezier(.4,0,.2,1);
}
.gh-reveal.gh-visible{
  opacity:1;
  transform:translateY(0);
}
/* Staggered children */
.gh-diff-grid .gh-reveal:nth-child(2){transition-delay:.15s}
.gh-mvv-grid .gh-reveal:nth-child(2){transition-delay:.1s}
.gh-mvv-grid .gh-reveal:nth-child(3){transition-delay:.2s}
.gh-timeline .gh-reveal:nth-child(2){transition-delay:.1s}
.gh-timeline .gh-reveal:nth-child(3){transition-delay:.2s}
.gh-timeline .gh-reveal:nth-child(4){transition-delay:.3s}
.gh-timeline .gh-reveal:nth-child(5){transition-delay:.4s}
/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px){
  .gh-hero-content{grid-template-columns:1fr;gap:40px}
  .gh-hero-visual{order:-1}
  .gh-hero-title{font-size:40px}
  .gh-about-intro{grid-template-columns:1fr;gap:36px}
  .gh-diff-grid{grid-template-columns:1fr;max-width:600px}
  .gh-mvv-grid{grid-template-columns:1fr;max-width:600px}
  .gh-counter-grid{grid-template-columns:repeat(2,1fr)}
  .gh-counter-item:nth-child(2)::after{display:none}
  .gh-timeline::before{left:24px}
  .gh-timeline-dot{left:24px}
  .gh-timeline-item:nth-child(odd),
  .gh-timeline-item:nth-child(even){
    flex-direction:row;
    padding-right:0;
    padding-left:60px;
  }
  .gh-globe-wrap{width:320px;height:320px}
  .gh-diff-grid{perspective:none}
  .gh-diff-card{transform-style:flat}
  .gh-diff-card:hover{transform:translateY(-4px)}
}
@media(max-width:768px){
  /* Hero */
  .gh-hero{padding:90px 16px 56px;min-height:auto}
  .gh-hero-content{gap:28px}
  .gh-hero-title{font-size:32px}
  .gh-hero-subtitle{font-size:15px}
  .gh-hero-stats{flex-direction:row;gap:16px;flex-wrap:wrap;justify-content:center;margin-top:28px;padding-top:24px}
  .gh-stat-item{text-align:center;flex:1;min-width:80px}
  .gh-hero-float-card{bottom:-12px;right:0;padding:14px 18px;gap:10px;border-radius:14px}
  .gh-float-icon{width:32px;height:32px}
  .gh-float-icon svg{width:16px;height:16px}
  .gh-float-text strong{font-size:12px}
  .gh-float-text span{font-size:11px}
  .gh-hero-cta{flex-direction:column}
  .gh-hero-cta .gh-btn{width:100%;justify-content:center;max-width:360px}
  /* Sections */
  .gh-section-header h2{font-size:28px}
  .gh-section-header p{font-size:15px}
  .gh-section-header{margin-bottom:36px}
  .gh-section-light,.gh-section-dark{padding:64px 16px}
  .gh-container{padding:0}
  /* About */
  .gh-about-intro{gap:28px}
  .gh-about-text h2{font-size:28px}
  .gh-about-text p{font-size:15px;line-height:1.8;margin-bottom:16px}
  .gh-about-mini-stats{flex-direction:row;gap:24px;justify-content:center}
  .gh-about-mini-stat{text-align:center;flex:1}
  /* Diferenciadores */
  .gh-diff-card{padding:28px 24px}
  .gh-diff-card h3{font-size:19px}
  /* MVV */
  .gh-mvv-card{padding:28px 20px}
  /* Values */
  .gh-values-tags{gap:8px}
  .gh-value-pill{padding:8px 16px;font-size:13px}
  /* Timeline */
  .gh-timeline-content{padding:20px}
  .gh-timeline-item{margin-bottom:32px}
  /* Counters */
  .gh-counter-value{font-size:34px}
  /* Clients */
  .gh-clients-carousel{-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 6%,#000 94%,transparent 100%);mask-image:linear-gradient(90deg,transparent 0%,#000 6%,#000 94%,transparent 100%)}
  .gh-clients-track{gap:20px;animation-duration:30s}
  .gh-client-logo{min-width:120px;padding:14px 20px}
  .gh-globe-clients{gap:32px}
  .gh-globe-wrap{width:280px;height:280px;margin:0 auto}
  .gh-globe-wrap iframe{pointer-events:none}
  .gh-clients-section{padding:64px 16px}
  /* CTA */
  .gh-cta-card{padding:40px 20px}
  .gh-cta-card h2{font-size:26px}
  .gh-cta-buttons{flex-direction:column;align-items:center}
  .gh-cta-buttons .gh-btn{width:100%;justify-content:center;max-width:300px}
  /* Buttons */
  .gh-btn{padding:13px 22px;font-size:14px}
  /* Disclaimer */
  .gh-disclaimer{padding:24px 16px;font-size:12px}
  /* Performance */
  .gh-hero::before,.gh-section-dark::before,.gh-clients-section::before{animation:none}
  .gh-nosotros-page{overflow-x:hidden}
}
@media(max-width:480px){
  /* Hero */
  .gh-hero{padding:80px 16px 40px}
  .gh-hero-content{gap:24px}
  .gh-hero-title{font-size:28px}
  .gh-hero-float-card{bottom:-10px;right:4px;padding:10px 14px;gap:8px;border-radius:12px}
  .gh-float-icon{width:28px;height:28px}
  .gh-float-text strong{font-size:12px}
  .gh-float-text span{font-size:10px}
  .gh-stat-value{font-size:26px}
  .gh-stat-label{font-size:10px}
  .gh-hero-cta .gh-btn{max-width:100%}
  /* Sections */
  .gh-section-light,.gh-section-dark{padding:48px 16px}
  .gh-section-header h2{font-size:24px}
  .gh-section-header{margin-bottom:28px}
  /* About */
  .gh-about-text h2{font-size:24px}
  .gh-about-mini-stat .gh-mini-value{font-size:24px}
  /* Diferenciadores */
  .gh-diff-card{padding:24px 18px}
  /* MVV */
  .gh-mvv-card{padding:24px 16px}
  .gh-mvv-card h3{font-size:18px}
  /* Values */
  .gh-values-tags{gap:6px}
  .gh-value-pill{padding:6px 12px;font-size:12px}
  .gh-value-pill svg{width:14px;height:14px}
  /* Timeline */
  .gh-timeline::before{left:16px}
  .gh-timeline-dot{left:16px}
  .gh-timeline-item:nth-child(odd),
  .gh-timeline-item:nth-child(even){padding-left:44px}
  .gh-timeline-content{padding:16px}
  .gh-timeline-content h3{font-size:16px}
  .gh-timeline-content p{font-size:13px}
  .gh-timeline-year{font-size:12px;padding:3px 12px}
  /* Counters */
  .gh-counter-grid{grid-template-columns:1fr 1fr}
  .gh-counter-item:not(:last-child)::after{display:none}
  .gh-counter-item{padding:20px 12px}
  .gh-counter-value{font-size:28px}
  /* Clients */
  .gh-clients-carousel{margin-left:-16px;margin-right:-16px;-webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 4%,#000 96%,transparent 100%);mask-image:linear-gradient(90deg,transparent 0%,#000 4%,#000 96%,transparent 100%)}
  .gh-clients-track{gap:16px}
  .gh-client-logo{min-width:100px;height:60px;padding:10px 14px}
  .gh-client-logo img{max-height:28px;max-width:90px}
  .gh-globe-wrap{width:240px;height:240px}
  .gh-clients-section{padding:48px 16px}
  /* CTA */
  .gh-cta-card{padding:32px 16px}
  .gh-cta-card h2{font-size:22px}
  .gh-cta-card p{font-size:14px}
  .gh-cta-buttons .gh-btn{max-width:100%}
  /* Disclaimer */
  .gh-disclaimer{font-size:12px;padding:32px 14px}
}
/* REDUCED MOTION — accessibility */
@media(prefers-reduced-motion:reduce){
  .gh-hero::before,.gh-section-dark::before,.gh-clients-section::before{animation:none}
  .gh-hero-float-card{animation:none}
  .gh-clients-track{animation:none}
  .gh-hero-badge::before{animation:none}
  .gh-reveal{opacity:1;transform:none;transition:none}
  .gh-hero-badge,.gh-hero-title,.gh-hero-subtitle,.gh-hero-cta,.gh-hero-visual,.gh-hero-stats{opacity:1;transform:none;animation:none}
}
