/* =========================================================
   KG4SAC.COM — Hoja de estilos global
   Sistema de diseño
   -----------------------------------------------------------
   Color:
     --navy        #0A2342  (primario / fondos oscuros)
     --black       #111111  (texto fuerte / secciones negras)
     --white       #FFFFFF
     --light       #F5F5F5  (fondos alternos)
     --gold        #D4AF37  (acento / detalles)
     --navy-2      #123059  (navy elevado, tarjetas sobre navy)
     --ink-60      rgba(17,17,17,.6) (texto secundario)
   Tipografía:
     Montserrat  -> titulares (display), todo mayúsculas, tracking amplio
     Poppins     -> subtítulos, botones, etiquetas (eyebrows)
     Inter       -> cuerpo de texto
   Firma visual:
     Línea de "barrido de radar" en el hero + patrón de retícula
     tipo monitor CCTV en la sección de Tecnología.
   ========================================================= */

:root {
  --navy: #0A2342;
  --navy-2: #123059;
  --black: #111111;
  --white: #FFFFFF;
  --light: #F5F5F5;
  --gold: #D4AF37;
  --gold-dim: #a9872b;
  --ink-60: rgba(17, 17, 17, 0.62);
  --white-60: rgba(255, 255, 255, 0.65);
  --white-15: rgba(255, 255, 255, 0.15);
  --radius: 4px;
  --shadow-lg: 0 30px 60px -20px rgba(10, 35, 66, 0.35);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

p { color: var(--ink-60); line-height: 1.75; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--navy); }

/* Reduced motion respected */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Botones ---------- */
.btn-kg-gold, .btn-kg-outline, .btn-kg-navy {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-kg-gold { background: var(--gold); color: var(--navy); }
.btn-kg-gold:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-kg-outline { background: transparent; color: var(--white); border-color: var(--white-15); }
.btn-kg-outline:hover { background: var(--white-15); border-color: var(--white); color: var(--white); }
.btn-kg-navy { background: var(--navy); color: var(--white); }
.btn-kg-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.kg-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.kg-navbar.scrolled {
  background: rgba(10, 35, 66, 0.96);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
.kg-navbar .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
}
/*aqui podemos cambiar el tamaño de la imagen del logo de la empresa*/
.kg-navbar .navbar-brand span { color: var(--gold); }
.kg-navbar .navbar-brand img {
  height: 90px;
  width: auto;
}
.kg-navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white-60) !important;
  padding: 10px 14px !important;
  position: relative;
}
.kg-navbar .nav-link:hover, .kg-navbar .nav-link.active { color: var(--white) !important; }
.kg-navbar .nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.kg-navbar .nav-link:hover::after, .kg-navbar .nav-link.active::after { transform: scaleX(1); }
.kg-navbar .btn-kg-gold { padding: 10px 22px; font-size: .78rem; }
.navbar-toggler { border: none; color: var(--white); }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: #0a2342;
  overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; animation: heroFade 70s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; animation-name: heroFadeFirst; }
.hero-slide:nth-child(2) { animation-delay: 7s; }
.hero-slide:nth-child(3) { animation-delay: 14s; }
.hero-slide:nth-child(4) { animation-delay: 21s; }
.hero-slide:nth-child(5) { animation-delay: 28s; }
.hero-slide:nth-child(6) { animation-delay: 35s; }
.hero-slide:nth-child(7) { animation-delay: 42s; }
.hero-slide:nth-child(8) { animation-delay: 49s; }
.hero-slide:nth-child(9) { animation-delay: 56s; }
.hero-slide:nth-child(10) { animation-delay: 63s; }
@keyframes heroFade {
  0%, 3%   { opacity: 0; }
  8%, 21%  { opacity: 1; }
  26%, 100% { opacity: 0; }
}
@keyframes heroFadeFirst {
  0%, 21%  { opacity: 1; }
  26%, 100% { opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,35,66,.88) 0%, rgba(10,35,66,.72) 45%, rgba(6,20,38,.94) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { animation: none; opacity: 1; }
}
.hero-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.9), transparent);
  box-shadow: 0 0 24px 4px rgba(212,175,55,.55);
  animation: scan 6s linear infinite;
  z-index: 3;
}
@keyframes scan { 0% { top: 12%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { top: 96%; opacity: 0; } }
.hero-grid {
  position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 4; }
.hero-badge {
  font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,175,55,.4); padding: 8px 18px; border-radius: 30px; display: inline-block; margin-bottom: 24px;
}
.hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.08; text-transform: none;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead {
  color: var(--white-60); font-family: 'Inter', sans-serif; font-size: 1.15rem; max-width: 620px; margin: 22px 0 36px;
}
.hero-stats { border-top: 1px solid var(--white-15); margin-top: 60px; padding-top: 26px; }
.hero-stats .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--white); }
.hero-stats .lbl { font-family: 'Poppins', sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--white-60); }
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4;
  color: var(--white-60); font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; text-align: center;
}
.scroll-cue .line { width: 1px; height: 34px; background: var(--white-15); margin: 10px auto 0; position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: var(--gold); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { top: -34px; } 100% { top: 34px; } }

/* ---------- Secciones ---------- */
section { padding: 110px 0; position: relative; }
.section-alt { background: var(--light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark p { color: var(--white-60); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-title { max-width: 680px; }
.section-title h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 18px; }

/* ---------- Tarjetas de servicio ---------- */

.svc-card {
  background: var(--white); border: 1px solid rgba(10,35,66,.08); border-radius: var(--radius);
  padding: 34px 28px; height: 100%; transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom; transition: transform .35s var(--ease); z-index: 2;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(10,35,66,.06);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--navy); font-size: 1.35rem;
  transition: all .35s var(--ease);
}
.svc-card:hover .svc-icon { background: var(--gold); color: var(--navy); }
.svc-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.svc-card p { font-size: .92rem; margin-bottom: 14px; }
.svc-card .svc-link { font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); }
.svc-card .svc-link i { transition: transform .3s var(--ease); }
.svc-card:hover .svc-link i { transform: translateX(4px); }

/* Variante con foto (grillas de servicios en index.html y servicios.html) */
.svc-card.svc-card-media { padding: 0; }
.svc-card-media .svc-img-wrap { position: relative; overflow: hidden; height: 180px; }
.svc-card-media .svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease);
}
.svc-card-media:hover .svc-img-wrap img { transform: scale(1.08); }
.svc-card-media .svc-icon {
  position: absolute; left: 20px; top: 152px; margin-bottom: 0; background: var(--gold);
  box-shadow: 0 8px 18px rgba(10,35,66,.25); z-index: 1;
}
.svc-card-media:hover .svc-icon { background: var(--navy); color: var(--gold); }
.svc-card-media .svc-body { padding: 44px 28px 28px; }

/* ---------- Sectores ---------- */
.sector-tile {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 240px;
  display: flex; align-items: flex-end; padding: 22px; background-size: cover; background-position: center;
}
.sector-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,35,66,0) 30%, rgba(10,35,66,.92) 100%); }
.sector-tile span { position: relative; z-index: 2; color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: .03em; }

/* ---------- Tecnología (retícula tipo monitor) ---------- */
.tech-panel {
  background: var(--navy-2); border: 1px solid var(--white-15); border-radius: var(--radius);
  padding: 30px 26px; height: 100%; position: relative; overflow: hidden;
}
.tech-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.08) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .6;
}
.tech-panel > * { position: relative; z-index: 1; }
.tech-panel i { color: var(--gold); font-size: 1.6rem; margin-bottom: 14px; display: block; }
.tech-panel h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.tech-panel p { font-size: .88rem; margin-bottom: 0; }

/* ---------- Galería ---------- */
.gallery-filters { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0 0 34px; }
.gallery-filters button {
  font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  background: none; border: 1px solid rgba(10,35,66,.18); border-radius: 30px; padding: 8px 18px; color: var(--navy); transition: all .25s var(--ease);
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 230px; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-overlay {
  position: absolute; inset: 0; background: rgba(10,35,66,.55); opacity: 0; transition: opacity .3s var(--ease);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }

/* ---------- Testimonios ---------- */
.testi-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); max-width: 720px; margin: 0 auto; text-align: center; }
.testi-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; }
.testi-card p.quote { font-size: 1.1rem; color: var(--black); font-style: italic; margin-bottom: 22px; }
.testi-card .who { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); font-size: .92rem; }
.testi-card .role { font-size: .8rem; color: var(--ink-60); }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ---------- Clientes ---------- */
.client-logo {
  height: 200px; display: flex; align-items: center; justify-content: center; filter: grayscale(1) opacity(.55);
  transition: all .5s var(--ease); font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--navy); border: 1px dashed rgba(10,35,66,.2); border-radius: var(--radius);
}
.client-logo:hover { filter: none; opacity: 1; }
.client-name { text-align: center; margin: .5rem 0 0; font-size: .85rem; font-weight: 600; color: var(--navy); }

/* ---------- Blog ---------- */
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid rgba(10,35,66,.08); transition: all .3s var(--ease); height: 100%; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card img { width: 100%; height: 190px; object-fit: cover; }
.blog-card .blog-body { padding: 24px; }
.blog-card .tag { font-family: 'Poppins', sans-serif; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-dim); font-weight: 600; }
.blog-card h4 { font-size: 1.02rem; margin: 10px 0; }
.blog-card .date { font-size: .78rem; color: var(--ink-60); }

/* ---------- FAQ (acordeón) ---------- */
.accordion-item { border: none; border-bottom: 1px solid rgba(10,35,66,.12); background: transparent; }
.accordion-button {
  font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); background: transparent; padding: 22px 6px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold-dim); background: transparent; }
.accordion-button::after { filter: sepia(1) saturate(4) hue-rotate(-10deg); }
.accordion-body { padding: 0 6px 24px; }

/* ---------- Contacto / Formularios ---------- */
.form-control, .form-select {
  border-radius: var(--radius); border: 1px solid rgba(10,35,66,.18); padding: 13px 16px; font-family: 'Inter', sans-serif; font-size: .94rem;
}
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.form-label { font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info-item .ci-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%; background: rgba(212,175,55,.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  height: 100%; min-height: 340px; border-radius: var(--radius); background: var(--light); display: flex; align-items: center; justify-content: center;
  color: var(--ink-60); font-family: 'Poppins', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; border: 1px dashed rgba(10,35,66,.2);
}

/* ---------- Footer ---------- */
footer.kg-footer { background: var(--black); color: var(--white-60); padding: 80px 0 0; }
footer.kg-footer h5 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 22px; }
footer.kg-footer a { color: var(--white-60); font-size: .9rem; display: block; margin-bottom: 12px; transition: color .25s var(--ease); }
footer.kg-footer a:hover { color: var(--gold); }
footer.kg-footer .brand { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); }
footer.kg-footer .brand span { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--white-15); margin-top: 60px; padding: 26px 0; font-size: .82rem; }
.social-row a {
  width: 38px; height: 38px; border: 1px solid var(--white-15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin: 0 6px 0 0;
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---------- Botones flotantes ---------- */
.fab-whatsapp {
  position: fixed; right: 24px; bottom: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; z-index: 999;
  box-shadow: 0 10px 26px rgba(0,0,0,.25); transition: transform .25s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); color: var(--white); }
.fab-top {
  position: fixed; right: 24px; bottom: 92px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: var(--white); z-index: 999; opacity: 0; pointer-events: none;
  transition: all .3s var(--ease); border: 1px solid var(--white-15);
}
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-top:hover { background: var(--gold); color: var(--navy); }

/* ---------- Modo oscuro ---------- */
body.dark-mode { background: #0d1420; color: var(--white-60); }
body.dark-mode section:not(.hero):not(.section-dark) { background: #0d1420; }
body.dark-mode .section-alt { background: #101a2b; }
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 { color: var(--white); }
body.dark-mode p { color: var(--white-60); }
body.dark-mode .svc-card, body.dark-mode .blog-card, body.dark-mode .testi-card { background: #101a2b; border-color: var(--white-15); }
body.dark-mode .svc-icon { background: rgba(255,255,255,.08); }
body.dark-mode .svc-card-media .svc-icon { background: var(--gold); }
body.dark-mode .svc-card-media:hover .svc-icon { background: var(--navy); color: var(--gold); }
body.dark-mode .form-control, body.dark-mode .form-select { background: #101a2b; border-color: var(--white-15); color: var(--white); }
body.dark-mode footer.kg-footer { background: #060a12; }
.mode-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--white-15); background: transparent; color: var(--white);
  display: inline-flex; align-items: center; justify-content: center; margin-left: 6px;
}
.mode-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Utilidades ---------- */
.page-header {
  background: var(--navy); color: var(--white); padding: 190px 0 90px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
.page-header .breadcrumb-kg { position: relative; z-index: 1; font-family: 'Poppins', sans-serif; font-size: .8rem; color: var(--white-60); text-transform: uppercase; letter-spacing: .08em; }
.page-header h1 { position: relative; z-index: 1; color: var(--white); margin-top: 12px; }

@media (max-width: 991px) {
  .kg-navbar { background: rgba(10,35,66,.98); padding: 14px 0; }
  section { padding: 76px 0; }
}

/* ---------- Submenú "Servicios" ---------- */
.kg-navbar .dropdown-toggle::after { vertical-align: 1px; margin-left: 6px; opacity: .8; }
.kg-navbar .dropdown-item {
  font-family: 'Inter', sans-serif; font-size: .88rem; color: var(--white-60);
  padding: 10px 16px; border-radius: 8px; transition: all .2s var(--ease);
}
.kg-navbar .dropdown-item:hover, .kg-navbar .dropdown-item:focus { background: rgba(212,175,55,.14); color: var(--white); }
.kg-navbar .dropdown-item.active { background: var(--gold); color: var(--navy); }

@media (min-width: 992px) {
  .kg-navbar .nav-item.dropdown { position: relative; }
  .kg-navbar .dropdown-menu {
    position: absolute; top: 100%; left: 0; margin-top: 12px; display: block;
    background: var(--navy-2); border: 1px solid var(--white-15); border-radius: 10px;
    padding: 10px; min-width: 260px; box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .kg-navbar .nav-item.dropdown:hover > .dropdown-menu,
  .kg-navbar .dropdown-menu.show {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}

/* ---------- Listas de servicios (páginas Limpieza / Soporte Técnico) ---------- */
.svc-list { list-style: none; padding: 0; margin: 0; }
.svc-list li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: .88rem; }
.svc-list li i { color: var(--gold); margin-top: 4px; font-size: .78rem; }
body.dark-mode .kg-navbar .dropdown-menu { background: #101a2b; }
