/* GSP Website UI kit — section styles (token-based recreation of the marketing home) */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAVBAR ── */
.navbar-wrapper { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all var(--dur-slow) var(--ease); }
.navbar-wrapper.scrolled { box-shadow: var(--shadow-nav); }
.navbar-top { padding: 0 clamp(1rem,3vw,3rem); height: 68px; display: flex; align-items: center; justify-content: space-between; background: var(--navy-900); border-bottom: 1px solid var(--border-on-dark); transition: background var(--dur-slow); }
.navbar-wrapper.scrolled .navbar-top { background: #0b1220; }
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-img { height: 50px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone { color: rgba(255,255,255,.6); font-size: .78rem; font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.nav-phone svg { stroke: var(--red-500); }
.navbar-bottom { display: flex; align-items: center; justify-content: center; padding: 0 clamp(1rem,3vw,3rem); height: 44px; background: rgba(19,29,51,.92); border-bottom: 1px solid var(--border-on-dark); transition: background var(--dur-slow); }
.navbar-wrapper.scrolled .navbar-bottom { background: rgba(14,21,38,.95); }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .78rem; font-weight: 500; padding: .5rem 1.25rem; transition: color var(--dur); position: relative; letter-spacing: .3px; display: flex; align-items: center; gap: .35rem; cursor: pointer; }
.nav-menu > li > a:hover, .nav-menu > li.open > a { color: var(--white); }
.nav-menu > li > a::after { content:''; position:absolute; bottom:4px; left:1.25rem; right:1.25rem; height:1.5px; background:var(--red-500); transform:scaleX(0); transition: transform .3s var(--ease); }
.nav-menu > li > a:hover::after, .nav-menu > li.open > a::after { transform:scaleX(1); }
.nav-arrow { transition: transform var(--dur); display:flex; }
.nav-menu > li.open .nav-arrow { transform: rotate(180deg); }
.nav-divider { width: 1px; height: 16px; background: rgba(255,255,255,.1); margin: 0 .25rem; }
.mega-dropdown { position: absolute; top: 100%; left: 50%; min-width: 340px; padding: 1.5rem 1.75rem; background: rgba(11,17,30,.99); border: 1px solid var(--border-on-dark); border-top: 2px solid var(--red-500); border-radius: 0 0 10px 10px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); pointer-events: none; display: flex; gap: 2rem; }
.mega-dropdown.wide { min-width: 560px; }
.nav-menu > li.open .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.mega-col { flex: 1; min-width: 0; }
.mega-col-title { font-family: var(--font-display); font-size: .65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red-500); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border-on-dark); }
.mega-item { display: block; padding: .5rem .6rem; border-radius: var(--radius-md); text-decoration: none; transition: background var(--dur-fast); margin-bottom: .15rem; }
.mega-item:hover { background: rgba(255,255,255,.05); }
.mega-item-title { font-family: var(--font-display); font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: .1rem; display: flex; align-items: center; gap: .5rem; }
.mega-item-title svg { stroke: var(--red-500); flex-shrink:0; }
.mega-item:hover .mega-item-title { color: var(--white); }
.mega-item-desc { font-size: .72rem; color: rgba(255,255,255,.35); padding-left: 26px; }
.mega-empleo-btn { display: block; margin-top: .75rem; padding: .55rem 1rem; background: var(--red-500); color: var(--white); text-decoration: none; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-align: center; border-radius: var(--radius-sm); transition: background var(--dur-fast); }
.mega-empleo-btn:hover { background: var(--red-600); }
.mega-parent-link { display: block; margin-top: .75rem; padding-top: .65rem; border-top: 1px solid var(--border-on-dark); font-family: var(--font-display); font-size: .72rem; font-weight: 700; color: var(--red-500); text-decoration: none; letter-spacing: .5px; cursor: pointer; transition: color var(--dur-fast); }
.mega-parent-link:hover { color: var(--red-400); }

/* ── MOBILE NAV ── */
.nav-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md, 6px); color: var(--white); cursor: pointer; padding: 0; transition: background var(--dur-fast); }
.nav-burger:active { background: rgba(255,255,255,.08); }
.nav-burger svg { stroke: var(--white); }
.mnav { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: #0E1526; z-index: 999; overflow-y: auto; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur); }
.mnav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mnav-group-btn { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem; background: none; border: none; border-bottom: 1px solid var(--border-on-dark); color: rgba(255,255,255,.9); font-family: var(--font-display); font-weight: 700; font-size: .95rem; text-align: left; cursor: pointer; }
.mnav-group-btn .nav-arrow { transition: transform var(--dur); display: flex; color: var(--red-500); }
.mnav-group.open .mnav-group-btn .nav-arrow { transform: rotate(180deg); }
.mnav-sub { max-height: 0; overflow: hidden; background: rgba(255,255,255,.03); transition: max-height .35s var(--ease); }
.mnav-group.open .mnav-sub { max-height: 640px; border-bottom: 1px solid var(--border-on-dark); }
.mnav-link { display: flex; align-items: center; min-height: 54px; padding: .5rem 1.5rem; color: rgba(255,255,255,.9); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: .95rem; border-bottom: 1px solid var(--border-on-dark); }
.mnav-link.sub { min-height: 48px; padding-left: 2.25rem; font-family: var(--font-body); font-weight: 500; font-size: .9rem; color: rgba(255,255,255,.65); border-bottom: none; }
.mnav-link.sub:active { background: rgba(255,255,255,.05); color: var(--white); }
.mnav-footer { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem 1.5rem 3rem; }
.mnav-phone { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; color: var(--white); text-decoration: none; font-weight: 600; font-size: .95rem; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm, 4px); }
.mnav-phone svg { stroke: var(--red-500); }
.mnav-empleo { display: flex; align-items: center; justify-content: center; min-height: 48px; background: var(--red-500); color: var(--white); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; border-radius: var(--radius-sm, 4px); transition: background var(--dur-fast); }
.mnav-empleo:active { background: var(--red-600); }
@media(max-width:900px){
  .navbar-bottom{ display:none; }
  .nav-phone{ display:none; }
  .nav-burger{ display:flex; }
  .mnav{ display:block; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 112px 2rem clamp(6.5rem, 14vh, 9rem); }
.hero-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; background: var(--navy-800); transform: translateZ(0); will-change: transform; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(13,21,38,.78) 0%, rgba(30,45,79,.6) 50%, rgba(13,21,38,.82) 100%); }
.hero-diagonal { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; height: 80px; pointer-events: none; }
.hero-diagonal svg { width: 100%; height: 100%; display: block; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 850px; margin: 0 auto; }
.hero-overline { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red-500); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .75rem; }
.hero-overline::before, .hero-overline::after { content:''; width: 30px; height: 1px; background: var(--red-500); opacity: .5; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem,5vw,3.8rem); line-height: 1.1; color: var(--white); margin-bottom: 1.25rem; }
.hero-accent { color: var(--red-500); }
.hero-subtitle { font-size: clamp(.95rem,1.5vw,1.15rem); color: rgba(255,255,255,.6); line-height: 1.6; max-width: 600px; margin: 0 auto 2.5rem; }
.hero-badges { display: flex; justify-content: center; gap: clamp(1rem,3vw,2.5rem); margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-badge-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-badge-icon { width: 44px; height: 44px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.hero-badge-item:hover .hero-badge-icon { border-color: rgba(231,26,33,.3); background: rgba(231,26,33,.08); }
.hero-badge-icon svg { stroke: rgba(255,255,255,.7); }
.hero-badge-label { font-size: .65rem; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.scroll-indicator span { font-size: .65rem; color: rgba(255,255,255,.3); letter-spacing: 2px; text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 11px; position: relative; }
.scroll-mouse::before { content:''; width: 2px; height: 6px; background: var(--red-500); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollDown 1.8s ease-in-out infinite; }
@keyframes scrollDown { 0%{opacity:1;top:6px;} 100%{opacity:0;top:18px;} }

/* ── SECTIONS ── */
.section { padding: var(--section-y) var(--section-x); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 3rem; }
@media(max-width:700px){ .services-grid{ grid-template-columns:1fr; } }
.service-card { overflow: hidden; cursor: pointer; display: flex; flex-direction: column; padding: 0 !important; }
.service-img { width: 100%; height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.service-img-bg { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.service-img-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.service-card:hover .service-img-bg,
.service-card:hover .service-img-photo { transform: scale(1.05); }
.service-img-bg.vigilancia { background: linear-gradient(135deg,#1a2744,#2a3f6b 50%,var(--navy-700)); }
.service-img-bg.alarmas { background: linear-gradient(135deg,#1c1c2e,#2d1f3d 50%,#1a1a2e); }
.service-img-bg.camaras { background: linear-gradient(135deg,#0f1a2e,#1a3a4a 50%,#0d2634); }
.service-img-bg.accesos { background: linear-gradient(135deg,#2a1a1a,#3d2424 50%,#1a1215); }
.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(0,0,0,.4)); z-index: 1; }
.service-img-icon { position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.service-img-icon svg { stroke: rgba(255,255,255,.75); }
.service-img-label { position: absolute; bottom: 14px; left: 18px; z-index: 2; font-family: var(--font-display); font-size: .6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.service-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--navy-700); margin-bottom: .6rem; }
.service-body p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.svc-dropdown { display: flex; flex-direction: column; align-items: flex-start; }
.svc-dropdown .svc-dropdown-caret { display: inline-flex; margin-left: .1rem; transition: transform var(--dur) var(--ease); }
.svc-dropdown.open .svc-dropdown-caret { transform: rotate(180deg); }
.svc-dropdown-menu { align-self: stretch; margin-top: 1rem; animation: svcDropIn var(--dur-slow) var(--ease); }
@keyframes svcDropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.svc-dropdown-item { display: flex; align-items: center; gap: .6rem; padding: .7rem .25rem; border-bottom: 1px solid var(--gray-100); color: var(--navy-700); text-decoration: none; font-family: var(--font-display); font-weight: 600; font-size: .85rem; transition: color var(--dur-fast), padding-left var(--dur-fast) var(--ease); }
.svc-dropdown-item:first-child { border-top: 1px solid var(--gray-100); }
.svc-dropdown-item:last-child { border-bottom: none; }
.svc-dropdown-item svg { stroke: var(--red-500); flex-shrink: 0; transition: transform var(--dur-fast) var(--ease); }
.svc-dropdown-item:hover { color: var(--red-500); padding-left: .6rem; }
.svc-dropdown-item:hover svg { transform: translateX(3px); }

/* ── CREDENTIALS ── */
.credentials { background: var(--navy-800); position: relative; overflow: hidden; padding-block: clamp(2.5rem, 5vw, 4rem); }
.credentials::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 20% 50%, rgba(231,26,33,.06), transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(63,78,109,.25), transparent 60%); }
.cred-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; z-index: 1; margin-top: 3rem; }
@media(max-width:800px){ .cred-grid{ grid-template-columns:repeat(2,1fr); } }
.cred-item { text-align: center; padding: 1.5rem; }
.cred-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 0 30px rgba(231,26,33,.08); transition: all var(--dur-slow); }
.cred-item:hover .cred-icon { border-color: rgba(231,26,33,.3); box-shadow: 0 0 40px rgba(231,26,33,.15); }
.cred-icon svg { stroke: var(--red-500); }
.cred-icon.has-logo { background: #fff; border-color: rgba(255,255,255,.18); width: var(--cred-chip-size, 64px); height: var(--cred-chip-size, 64px); transition: width .25s cubic-bezier(.4,0,.2,1), height .25s cubic-bezier(.4,0,.2,1); }
.cred-icon.has-logo img { width: 48px; height: 48px; object-fit: contain; transform: scale(var(--cred-logo-scale, 1)); transform-origin: center center; transition: transform .25s cubic-bezier(.4,0,.2,1); }
.cred-item:hover .cred-icon.has-logo { box-shadow: 0 0 40px rgba(231,26,33,.18); }
.cred-item h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--white); margin-bottom: .3rem; }
.cred-item p { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ── CLIENTS ── */
.clients { background: var(--white); overflow: hidden; }
.clients-track { display: flex; gap: 3rem; animation: marquee 28s linear infinite; width: max-content; margin-top: 2rem; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.client-logo { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: .8rem 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; transition: all .3s; flex-shrink: 0; }
.client-logo:hover { border-color: var(--gray-200); color: var(--navy-700); }

/* ── WHY ── */
.why-gsp { background: var(--gray-50); }
.why-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-block:last-child { margin-bottom: 0; }
.why-block:nth-child(even) .why-img { order: 2; }
@media(max-width:768px){ .why-block{ grid-template-columns:1fr; gap:1.5rem; } .why-block:nth-child(even) .why-img{ order:0; } }
.why-img { background: var(--navy-700); border-radius: var(--radius-lg); aspect-ratio: var(--why-img-ratio, 1.6); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.why-img::before { content:''; position:absolute; inset:0; background: linear-gradient(135deg,rgba(231,26,33,.1),transparent 60%); }
.why-img svg { stroke: rgba(255,255,255,.15); }
.why-img-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center var(--why-img-focus, 50%); }
.why-number { font-family: var(--font-display); font-weight: 800; font-size: 3.5rem; color: var(--red-500); opacity: .12; line-height: 1; margin-bottom: .5rem; }
.why-text h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy-700); margin-bottom: .75rem; }
.why-text p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--navy-800); position: relative; overflow: hidden; }
.testimonials::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 50% 50%, rgba(231,26,33,.04), transparent 50%); }
.testimonial-content { position: relative; z-index: 1; text-align: center; max-width: 750px; margin: 0 auto; }
.testimonial-quote-mark { font-family: Georgia, serif; font-size: 6rem; color: var(--red-500); opacity: .2; line-height: 1; margin-bottom: -1.5rem; }
.testimonial-text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem,2vw,1.4rem); color: rgba(255,255,255,.85); line-height: 1.7; font-style: italic; margin-bottom: 2rem; transition: opacity .4s; }
.testimonial-author { font-size: .85rem; color: rgba(255,255,255,.4); }
.testimonial-author strong { color: var(--red-500); font-weight: 600; }
.testimonial-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.testimonial-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); transition: all .3s; cursor: pointer; border: none; padding: 0; }
.testimonial-dot.active { background: var(--red-500); width: 24px; border-radius: 4px; }

/* ── FORM ── */
.form-section { background: var(--gray-50); position: relative; }
.form-section::before { content:''; position:absolute; top:0; left:0; right:0; height: 4px; background: linear-gradient(90deg,var(--red-500),var(--red-600)); }
.form-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media(max-width:900px){ .form-wrapper{ grid-template-columns:1fr; gap:2rem; } }
.form-info h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--navy-700); margin-bottom: .75rem; line-height: 1.15; }
.form-info .subtitle { font-size: .95rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 2rem; }
.form-feature { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.form-feature-icon { width: 36px; height: 36px; border-radius: var(--radius-lg); flex-shrink: 0; background: var(--red-glow); display: flex; align-items: center; justify-content: center; }
.form-feature-icon svg { stroke: var(--red-500); }
.form-feature h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: var(--navy-700); margin-bottom: .15rem; }
.form-feature p { font-size: .8rem; color: var(--gray-600); }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:500px){ .form-grid{ grid-template-columns:1fr; } }
.form-whatsapp { text-align: center; margin-top: 1.25rem; font-size: .82rem; color: var(--gray-600); }
.form-whatsapp a { color: #25D366; font-weight: 600; text-decoration: none; }
.form-empleo { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; padding: .7rem .95rem; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 6px; }
.form-empleo .fe-text { font-size: .8rem; color: var(--gray-600); }
.form-empleo .fe-btn { font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--red-500); text-decoration: none; white-space: nowrap; transition: color .2s var(--ease), transform .2s var(--ease); }
.form-empleo .fe-btn:hover { color: var(--red-600); transform: translateX(3px); }
.form-sent { text-align:center; padding: 2rem 1rem; }
.form-sent .ok { width:56px; height:56px; border-radius:50%; background:var(--success-bg); color:var(--success); display:flex; align-items:center; justify-content:center; margin:0 auto 1rem; }
.form-sent h3 { font-family:var(--font-display); color:var(--navy-700); margin-bottom:.4rem; }
.form-sent p { color:var(--gray-600); font-size:.88rem; }

/* ── LOCATIONS ── */
.locations { background: var(--white); }
.locations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3rem; }
@media(max-width:800px){ .locations-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:500px){ .locations-grid{ grid-template-columns:1fr; } }
.location-card { transition: all .3s; }
.location-card h4 { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--navy-700); margin-bottom: .4rem; }
.location-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.5; margin-bottom:.6rem; }

/* ── FOOTER ── */
.footer { background: var(--navy-800); padding: 4rem clamp(1.5rem,4vw,4rem) 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border-on-dark); }
@media(max-width:768px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:500px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand img { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: .85rem; margin-bottom: .6rem; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--white); }
.footer-col a.empleo { color: var(--red-500); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-social { display: flex; gap: .75rem; }
