/* ================================================================
   ESTRATEGIAS NOROESTE — Global Stylesheet
   Branding: Navy #1B2A41 · Gold #C8A85A
   Fonts: Montserrat (display) · Source Sans 3 (body)
   ================================================================ */

/* ────────────────────────────────
   VARIABLES & RESET
──────────────────────────────── */
:root {
  --navy:        #1B2A41;
  --navy-dark:   #0F1B2D;
  --navy-mid:    #243553;
  --gold:        #C8A85A;
  --gold-light:  #D4B96B;
  --gold-dark:   #A88A3A;
  --gray:        #6B7280;
  --gray-light:  #9CA3AF;
  --gray-bg:     #F3F4F6;
  --white:       #FFFFFF;
  --border:      #E5E7EB;

  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease);

  --section-v:   72px;
  --section-h:   24px;
  --max-w:       1200px;
}

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

/* ────────────────────────────────
   LAYOUT
──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-h);
}
section { padding: var(--section-v) var(--section-h); }

/* ────────────────────────────────
   TYPOGRAPHY
──────────────────────────────── */
.label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.label::after { content: ''; display: block; width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.label.center { justify-content: center; }
.label.center::after { display: none; }
.label.center::before { content: ''; display: block; width: 32px; height: 2px; background: var(--gold); }

.h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 8vw, 76px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: var(--white);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 14px;
}
.h2.light { color: var(--white); }
.lead {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--gray);
  line-height: 1.7;
  max-width: 580px;
}
.lead.light { color: rgba(255,255,255,0.68); }
.gold { color: var(--gold); }

/* ────────────────────────────────
   BUTTONS
──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,90,0.35);
}
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,42,65,0.3); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ────────────────────────────────
   SCROLL REVEAL
──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ────────────────────────────────
   NAVBAR
──────────────────────────────── */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(15, 27, 45, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 var(--section-h);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.nav-logo .divider { width: 1px; height: 32px; background: rgba(255,255,255,0.22); margin: 0 14px; flex-shrink: 0; }
.nav-logo .wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .w-top { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #FFFFFF; }
.nav-logo .w-bottom { font-family: var(--font-display); font-size: 12.5px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.nav-logo .w-tag { font-family: var(--font-display); font-size: 7px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 3px; }

/* Desktop nav */
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
/* Puente invisible que cubre el gap entre el trigger y el submenú */
.nav-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform var(--transition); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), background var(--transition);
  position: static;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.nav-dropdown-menu .dd-section {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 10px 18px 4px;
}

.nav-cta { display: none; }

/* Hamburger */
.hamburger { background: none; border: none; display: flex; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* Mobile overlay */
#mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--navy-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-y: auto;
  padding: 60px 24px 40px;
}
#mobile-overlay.open { display: flex; }
.mob-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 30px; line-height: 1; padding: 8px; }
#mobile-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 18px; width: 100%; }
#mobile-overlay nav a { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.06em; text-transform: uppercase; transition: color var(--transition); }
#mobile-overlay nav a:hover { color: var(--gold); }
.mob-section { font-family: var(--font-display); font-size: 8px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }

/* ────────────────────────────────
   HERO (homepage)
──────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--section-h) 72px;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.055) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero-glow { position: absolute; top: -160px; right: -120px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(200,168,90,0.13) 0%, transparent 68%); pointer-events: none; }
.hero-watermark { position: absolute; right: -5%; top: 50%; transform: translateY(-50%); opacity: 0.06; pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--max-w); margin: 0 auto; animation: heroIn 0.9s var(--ease) both; }
.hero-label { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-label::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); }
.hero-h1 { font-family: var(--font-display); font-size: clamp(32px, 6vw, 68px); font-weight: 900; line-height: 1.04; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; max-width: 700px; }
.hero-h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 40px; max-width: 560px; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 56px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 640px; }
.stat-num { font-family: var(--font-display); font-size: clamp(26px, 4.5vw, 40px); font-weight: 900; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ────────────────────────────────
   INTERIOR PAGE HERO
──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 130px var(--section-h) 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.045) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-glow { position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,168,90,0.1) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold); }
.page-hero .breadcrumb svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(30px, 6vw, 58px); font-weight: 900; line-height: 1.06; letter-spacing: -0.025em; color: var(--white); margin-bottom: 18px; max-width: 680px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 560px; margin-bottom: 32px; }
.page-hero .btn { margin-right: 12px; margin-bottom: 8px; }

/* ────────────────────────────────
   SERVICES GRID (homepage)
──────────────────────────────── */
.services-head { text-align: center; margin-bottom: 48px; }
.services-head .lead { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.srv-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.srv-card::after { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.srv-card:hover { box-shadow: 0 16px 48px rgba(27,42,65,0.1); transform: translateY(-5px); border-color: transparent; }
.srv-card:hover::after { transform: scaleX(1); }
.srv-icon { width: 48px; height: 48px; background: rgba(200,168,90,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.srv-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.srv-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.srv-desc { font-size: 14px; color: var(--gray); line-height: 1.72; }
.srv-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 18px; transition: gap var(--transition); }
.srv-link:hover { gap: 10px; }
.srv-link svg { stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ────────────────────────────────
   NICHOS / INDUSTRIAS GRID
──────────────────────────────── */
.nichos-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; max-width: var(--max-w); margin: 0 auto; }
.nicho-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 190px;
}
.nicho-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,42,65,0.25); }
.nicho-emoji { flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.nicho-emoji svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.nicho-body { flex: 1; display: flex; flex-direction: column; align-items: center; }
.nicho-body h3 { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.nicho-body p { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.55; }
.nicho-arrow { margin-top: 16px; color: var(--gold); flex-shrink: 0; }
.nicho-arrow svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ────────────────────────────────
   POR QUÉ NOSOTROS
──────────────────────────────── */
#nosotros-sec, .why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#nosotros-sec::after, .why-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 360px;
  height: 360px;
  border: 56px solid rgba(200,168,90,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.nos-inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; }
.difs { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
.dif-item { display: flex; gap: 16px; align-items: flex-start; }
.dif-check { width: 24px; height: 24px; background: rgba(200,168,90,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.dif-check svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.dif-body h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dif-body p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.72; }

/* ────────────────────────────────
   PAQUETES (pricing table)
──────────────────────────────── */
.paquetes-section { background: var(--gray-bg); }
.paquetes-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.pack-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pack-card:hover { border-color: var(--gold); box-shadow: 0 12px 40px rgba(200,168,90,0.15); transform: translateY(-4px); }
.pack-card.featured { border-color: var(--gold); background: var(--navy); }
.pack-badge { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); background: rgba(200,168,90,0.12); border-radius: 20px; padding: 4px 12px; display: inline-block; margin-bottom: 14px; }
.pack-name { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.pack-card.featured .pack-name { color: var(--white); }
.pack-range { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.pack-card.featured .pack-range { color: rgba(255,255,255,0.55); }
.pack-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pack-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy); }
.pack-card.featured .pack-feat { color: rgba(255,255,255,0.8); }
.pack-feat-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.pack-feat-x { width: 6px; height: 6px; background: var(--border); border-radius: 50%; flex-shrink: 0; }
.pack-feat .na { color: var(--gray-light); }

/* ────────────────────────────────
   CONTENT SECTIONS (service/industry pages)
──────────────────────────────── */
.content-section { max-width: var(--max-w); margin: 0 auto; }
.content-section h2 { font-family: var(--font-display); font-size: clamp(22px, 4vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.015em; }
.content-section h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.content-section p { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.content-section strong { color: var(--navy); }

/* Feature list */
.feat-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0 28px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-bullet { width: 28px; height: 28px; background: rgba(200,168,90,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.feat-bullet svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feat-text h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feat-text p { font-size: 14px; color: var(--gray); margin-bottom: 0; }

/* 2-col layout for interior pages */
.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: var(--max-w); margin: 0 auto; }
.two-col.reverse { }

/* Service detail cards */
.detail-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.detail-card { background: var(--gray-bg); border-radius: 8px; padding: 26px 24px; border-left: 4px solid var(--gold); }
.detail-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.detail-card p { font-size: 14px; color: var(--gray); line-height: 1.72; margin-bottom: 0; }

/* ────────────────────────────────
   FAQ SECTION
──────────────────────────────── */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--gray); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 20px; }

/* ────────────────────────────────
   AREAS MAP
──────────────────────────────── */
.offices-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: var(--max-w); margin: 0 auto; }
.office-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.office-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.office-icon { font-size: 28px; margin-bottom: 12px; }
.office-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.office-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

.cities-wrap { background: var(--gray-bg); border-radius: 10px; padding: 32px 28px; margin-top: 40px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.cities-wrap h2 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.cities-list { display: flex; flex-wrap: wrap; gap: 10px; }
.city-tag { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: 13px; color: var(--navy); font-family: var(--font-display); font-weight: 600; letter-spacing: 0.04em; }

/* ────────────────────────────────
   TESTIMONIOS
──────────────────────────────── */
#testimonios, .test-section { background: var(--white); }
.test-head { text-align: center; margin-bottom: 48px; }
.test-grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.test-card { background: var(--gray-bg); border-radius: 10px; padding: 28px 24px; }
.test-q { font-size: 36px; line-height: 1; color: var(--gold); font-family: Georgia, 'Times New Roman', serif; opacity: 0.55; margin-bottom: 10px; }
.test-text { font-size: 15px; font-style: italic; color: var(--navy); line-height: 1.7; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-ava { width: 42px; height: 42px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.test-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); }
.test-role { font-size: 12px; color: var(--gray); }

/* ────────────────────────────────
   CTA BAND
──────────────────────────────── */
#cta-band, .cta-section {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before, .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.05) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(26px, 5vw, 48px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; color: var(--white); margin-bottom: 14px; }
.cta-inner p { font-size: clamp(14px, 2vw, 17px); color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 16px; font-family: var(--font-display); letter-spacing: 0.06em; }

/* ────────────────────────────────
   CONTACTO
──────────────────────────────── */
#contacto, .contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: var(--max-w); margin: 0 auto; }
.contact-info .h2 { margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }
.contact-deets { display: flex; flex-direction: column; gap: 16px; }
.c-deet { display: flex; align-items: flex-start; gap: 14px; }
.c-icon { width: 38px; height: 38px; background: rgba(200,168,90,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-lbl { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-light); }
.c-val { font-size: 15px; font-weight: 600; color: var(--navy); }
.c-val a { transition: color var(--transition); }
.c-val a:hover { color: var(--gold); }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 14px 24px; border-radius: 4px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: var(--transition); margin-top: 8px; }
.wa-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

/* ────────────────────────────────
   ABOUT / CREDENCIALES
──────────────────────────────── */
.creds-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 14px; }
.cred-card { background: var(--gray-bg); border-radius: 10px; padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
.cred-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: rgba(200,168,90,0.12); display: flex; align-items: center; justify-content: center; }
.cred-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cred-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cred-name { font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--navy); }
.cred-desc { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ────────────────────────────────
   FOOTER
──────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 52px var(--section-h) 32px;
}
.ft-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: var(--max-w); margin: 0 auto; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.ft-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.ft-social { display: flex; gap: 10px; margin-top: 18px; }
.ft-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.ft-social a:hover { background: rgba(200,168,90,0.15); border-color: var(--gold); transform: translateY(-2px); }
.ft-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); stroke: none; transition: fill var(--transition); }
.ft-social a:hover svg { fill: var(--gold); }
.ft-col h4 { font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.ft-col ul a:hover { color: rgba(255,255,255,0.9); }
.ft-bottom { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.ft-legal { display: flex; gap: 20px; }
.ft-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.ft-legal a:hover { color: rgba(255,255,255,0.7); }

/* ────────────────────────────────
   TABLET 768px+
──────────────────────────────── */
@media (min-width: 768px) {
  :root { --section-v: 96px; --section-h: 36px; }
  .hero-btns { flex-direction: row; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .nichos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .difs { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: row; justify-content: center; }
  .ft-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .ft-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .paquetes-grid { grid-template-columns: repeat(3, 1fr); }
  .offices-grid { grid-template-columns: repeat(3, 1fr); }
  .detail-cards { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .two-col { grid-template-columns: 1fr 1fr; }
}

/* ────────────────────────────────
   DESKTOP 1024px+
──────────────────────────────── */
@media (min-width: 1024px) {
  :root { --section-v: 120px; --section-h: 48px; }
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .hamburger { display: none; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .nichos-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .difs { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 72px; }
  #hero { padding: 120px 48px 80px; }
  .detail-cards { grid-template-columns: repeat(3, 1fr); }
  .creds-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .two-col { gap: 72px; }
  .nichos-grid.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ================================================================
   DYNAMIC LAYER — Animaciones fluidas
   ================================================================ */

/* ─── Scroll Progress Bar ──────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, #A07A28, var(--gold), #EDD98A);
  z-index: 9999;
  width: 0%;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(200,168,90,0.7), 0 0 4px rgba(200,168,90,0.4);
}

/* ─── Hero: grid pattern OFF ────────────────────────────────────── */
#hero::before { display: none; }

/* ─── Hero Blobs ─────────────────────────────────────────────────── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: blobDrift ease-in-out infinite alternate;
  z-index: 0;
}
.hero-blob.b1 {
  width: 700px; height: 700px;
  top: -200px; right: -120px;
  background: radial-gradient(circle at 40% 40%, rgba(200,168,90,0.1) 0%, transparent 65%);
  filter: blur(60px);
  animation-duration: 8s;
}
.hero-blob.b2 {
  width: 450px; height: 450px;
  bottom: -100px; left: -60px;
  background: radial-gradient(circle, rgba(36,53,83,0.9) 0%, transparent 70%);
  filter: blur(80px);
  animation-duration: 11s;
  animation-delay: -4s;
}
.hero-blob.b3 {
  width: 300px; height: 300px;
  top: 35%; left: 30%;
  background: radial-gradient(circle, rgba(200,168,90,0.06) 0%, transparent 65%);
  filter: blur(50px);
  animation-duration: 14s;
  animation-delay: -7s;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, -22px) scale(1.07); }
}

/* ─── Hero Drift (tipografía decorativa flotante) ───────────────── */
.hero-drift {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hd {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(200,168,90,0.032);
  letter-spacing: -0.04em;
  user-select: none;
  animation: hdFloat var(--hd-dur, 14s) ease-in-out infinite alternate;
}
@keyframes hdFloat {
  from { transform: translateY(-14px) rotate(var(--r1, -2deg)); }
  to   { transform: translateY(14px)  rotate(var(--r2,  2deg)); }
}

/* ─── Hero H1 Line Reveal ────────────────────────────────────────── */
.hero-h1 .hl {
  display: block;
  overflow: hidden;
  line-height: 1.06;
}
.hero-h1 .hli {
  display: block;
  transform: translateY(112%);
  animation: lineReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-h1 .hl:nth-child(1) .hli { animation-delay: 0.12s; }
.hero-h1 .hl:nth-child(2) .hli { animation-delay: 0.28s; }
.hero-h1 .hl:nth-child(3) .hli { animation-delay: 0.44s; }
.hero-h1 em { font-style: normal; color: var(--gold); }
@keyframes lineReveal { to { transform: translateY(0); } }

/* Hero content: override old heroIn animation */
.hero-content { animation: none !important; }
.hero-label { animation: fadeUp 0.8s 0.05s both; }
.hero-sub    { animation: fadeUp 0.9s 0.62s both; }
.hero-btns   { animation: fadeUp 0.9s 0.78s both; }
.hero-stats  { animation: fadeUp 0.9s 0.92s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Service Cards — bottom-fill hover ─────────────────────────── */
.srv-card {
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease), border-color 0.4s var(--ease), transform 0.35s var(--ease);
}
/* Remove old top-bar ::after and replace with fill + bar */
.srv-card::after { display: none; }
.srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
  border-radius: inherit;
}
.srv-card .srv-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: 2;
}
.srv-card:hover::before     { transform: translateY(0); }
.srv-card:hover .srv-bar    { transform: scaleX(1); }
.srv-card:hover             { box-shadow: 0 24px 60px rgba(27,42,65,0.28); border-color: transparent; transform: translateY(-4px); }
.srv-card > *               { position: relative; z-index: 1; }

/* Service number (replaces svg icon) */
.srv-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(200,168,90,0.1);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  transition: color 0.4s var(--ease);
}
.srv-card:hover .srv-num  { color: rgba(200,168,90,0.28); }
.srv-card:hover .srv-title { color: #fff; }
.srv-card:hover .srv-desc  { color: rgba(255,255,255,0.6); }
.srv-card:hover .srv-link  { color: var(--gold); }
.srv-card:hover .srv-link svg { stroke: var(--gold); }

/* ─── Industry Strips (sin emojis) ──────────────────────────────── */
.ind-strips {
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ind-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px var(--section-h);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: padding-left 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.ind-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.ind-strip:hover::before { transform: scaleX(1); }
.ind-strip:hover          { padding-left: 28px; }
.ind-strip > *            { position: relative; z-index: 1; }
.is-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.16em;
  width: 32px;
  flex-shrink: 0;
  transition: color 0.3s;
}
.is-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.8vw, 44px);
  font-weight: 900;
  color: #fff;
  flex: 1;
  letter-spacing: -0.025em;
  line-height: 1;
  transition: color 0.3s;
}
.is-tags {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
  display: none;
}
.is-arrow {
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  transition: color 0.35s, transform 0.4s var(--ease);
}
.is-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ind-strip:hover .is-num,
.ind-strip:hover .is-name,
.ind-strip:hover .is-tags  { color: var(--navy); }
.ind-strip:hover .is-arrow { color: var(--navy); transform: translateX(10px); }
@media (min-width: 640px) { .is-tags { display: block; } }

/* ─── CTA pulse glow ─────────────────────────────────────────────── */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,90,0); }
  50%       { box-shadow: 0 0 0 12px rgba(200,168,90,0.14); }
}
.pulse { animation: ctaPulse 2.8s ease-in-out infinite; }

/* ─── Extra reveal variants ──────────────────────────────────────── */
.reveal-left  { opacity:0; transform:translateX(-32px); transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal-right { opacity:0; transform:translateX(32px);  transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal-scale { opacity:0; transform:scale(0.93);       transition:opacity 0.7s var(--ease),transform 0.7s var(--ease); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity:1; transform:none; }

/* ─── Magnetic button base ───────────────────────────────────────── */
.btn { transition: background var(--transition), border-color var(--transition), transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow var(--transition); }


/* ─── Patterns & Textures ──────────────────────────────────────────
   Sistema unificado de texturas para fondos oscuros y claros.
   Hero, page-hero y CTA ya tienen el patrón desde su ::before.
   Aquí se aplica al resto de secciones.
──────────────────────────────────────────────────────────────────── */

/* Diagonal gold grid — secciones navy restantes */
#nosotros-sec,
.why-section {
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.038) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.024) 1px, transparent 1px);
  background-size: 64px 64px;
}

#industrias {
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.032) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
}

footer {
  background-image:
    linear-gradient(108deg, rgba(200,168,90,0.042) 1px, transparent 1px),
    linear-gradient(-72deg, rgba(200,168,90,0.026) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* Dot grid — secciones gris claro */
.paquetes-section {
  background-image: radial-gradient(circle, rgba(27,42,65,0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

#testimonios,
.test-section {
  background-image: radial-gradient(circle, rgba(27,42,65,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}
