:root {
  --bg: #000020;
  --bg-2: #0b0b2a;

  --text: #e9eaf2;
  --muted: #b9bbcf;

  --teal: #14c6c8;
  --purple: #5a00a8;

  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth; /* ✅ scroll suave */
}

body {
  padding-top: 80px; /* espacio para el header fijo */
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(
      900px 500px at 90% 10%,
      rgba(90, 0, 168, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

/* Fondo difuminado GLOBAL (toda la pagina) */
body::before {
  content: "";
  position: fixed;
  inset: -220px;
  z-index: -1; /* ✅ SIEMPRE detrás */
  pointer-events: none;

  background: radial-gradient(
      1100px 520px at 10% 25%,
      rgba(20, 198, 200, 0.34),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 90% 22%,
      rgba(90, 0, 168, 0.22),
      transparent 60%
    ),
    radial-gradient(
      1100px 640px at 50% 85%,
      rgba(20, 198, 200, 0.18),
      transparent 66%
    );

  filter: blur(2px);
  opacity: 1;
}

/* Para que el sticky header no tape el inicio de las secciones */
section {
  scroll-margin-top: 100px;
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */
.header {
  position: fixed; /* 👈 en vez de sticky */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;

  z-index: 2147483647;

  background: rgba(0, 0, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner--full {
  width: 100%;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
}

.brand__logo-img {
  height: 70px;
  width: auto;
  border-radius: 30px;
}

/* Nav desktop */
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  transition: all 0.2s ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

/* Tracking destacado */
.nav__link--highlight {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: #fff;
}
.nav__link--highlight:hover {
  filter: brightness(1.1);
}

/* Burger */
.burger {
  display: none;
  margin-left: auto;

  width: 44px;
  height: 44px;
  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--text);
  margin: 4px auto;
  opacity: 0.9;
}

/* Nav móvil (animado suave) */
.nav-mobile {
  display: grid; /* siempre grid */
  gap: 10px;

  padding: 0 16px; /* cerrado: sin padding vertical */
  border-top: 1px solid var(--line);

  background: rgba(0, 0, 32, 0.75);
  backdrop-filter: blur(10px);

  max-height: 0; /* cerrado */
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;

  transition: max-height 280ms ease, opacity 220ms ease, transform 220ms ease,
    padding 220ms ease;
  pointer-events: none; /* evita clicks cerrado */
}

/* Abierto */
.nav-mobile.is-open {
  max-height: 520px; /* suficiente para todos los links */
  opacity: 1;
  transform: translateY(0);
  padding: 12px 16px 18px; /* abierto: vuelve padding */
  pointer-events: auto;
}

.nav-mobile__link {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.nav-mobile__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-mobile__link--highlight {
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: #fff;
  width: fit-content;
  padding: 10px 14px;
}

/* Responsive header */
@media (max-width: 980px) {
  .nav--desktop {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .nav-mobile.is-open {
    display: grid;
  }
}

/* ================= HERO / SWIPER ================= */
.nlc-hero {
  position: relative;
  z-index: 1;
  padding: 18px 0 0;
}

.nlc-hero__grid {
  width: 100%;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 12px;
  align-items: stretch;
}

.nlc-hero__main {
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

/* Swiper ocupa todo */
.nlc-swiper,
.nlc-swiper .swiper-wrapper,
.nlc-swiper .swiper-slide {
  height: 100%;
}

.nlc-swiper .swiper-slide {
  position: relative;
}

.nlc-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Degradado */
.nlc-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.3) 45%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.nlc-hero__overlay {
  position: absolute;
  left: 26px;
  bottom: 26px;
  max-width: 520px;
  z-index: 2;
}

.nlc-hero__overlay h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.3px;
}

.nlc-hero__overlay p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 600;
}

.nlc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: 0.2s ease;
}
.nlc-hero__btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Botón next */
.nlc-next {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
  transition: 0.2s ease;
}
.nlc-next:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Right side previews */
.nlc-hero__side {
  display: grid;
  gap: 12px;
}

.nlc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  min-height: 160px;
  cursor: pointer;
  padding: 0;
}

.nlc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nlc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
}

.nlc-card__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.nlc-card:hover {
  transform: translateY(-1px);
  transition: 0.2s ease;
}

/* Responsive hero */
@media (max-width: 980px) {
  .nlc-hero__grid {
    grid-template-columns: 1fr;
  }
  .nlc-hero__main {
    min-height: 260px;
  }
  .nlc-hero__side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nlc-hero__grid {
    padding: 0 14px;
  }
  .nlc-hero__overlay {
    left: 16px;
    bottom: 16px;
  }
  .nlc-hero__side {
    grid-template-columns: 1fr;
  }
}

/* ================= SECCIONES GENERALES ================= */
.nlc-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.nlc-section__inner {
  width: 100%;
  padding: 0 32px;
}

/* Card grande (Sobre Nosotros / placeholders) */
.nlc-card-box {
  width: 100%;
  max-width: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px 38px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.nlc-card-box h2 {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.4px;
}

.nlc-card-box p {
  margin: 0 0 22px;
  text-align: justify;
  color: var(--muted);
  line-height: 1.75;
  font-size: 20px;
}
.nlc-card-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nlc-section {
    padding: 60px 0;
  }
  .nlc-card-box {
    padding: 28px 24px;
  }
  .nlc-card-box p {
    font-size: 18px;
  }
}

/* ================= MISIÓN / VISIÓN / VALORES ================= */
.nlc-mv {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.nlc-mv__title {
  text-align: center;
  margin: 0 0 30px;
  width: 100%;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.3px;
}

.nlc-mv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.nlc-mv__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nlc-mv__card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.nlc-mv__card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: 0.2px;
  text-align: center;
}

.nlc-mv__card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  text-align: justify;
}

.nlc-values {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}
.nlc-values li {
  margin: 0 0 8px;
}
.nlc-values li:last-child {
  margin-bottom: 0;
}

/* Responsive MV */
@media (max-width: 1100px) {
  .nlc-mv__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .nlc-mv__grid {
    grid-template-columns: 1fr;
  }
  .nlc-mv__card {
    padding: 28px 24px;
  }
  .nlc-values {
    font-size: 18px;
  }
}

/* ================= SERVICIOS (grid + desplegable) ================= */
/* ===== SERVICIOS (Acordeón tipo cards + fondo celeste difuminado) ===== */
.nlc-services {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nlc-services .nlc-section__inner {
  position: relative;
  z-index: 1;
}

.nlc-services__header {
  text-align: center;
  margin-bottom: 18px;
}

.nlc-services__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 33px);
  letter-spacing: 0.3px;
}

.nlc-services__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

/* Grid */
.nlc-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

/* Card base */
.svc-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* El summary como “botón/card” */
.svc-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  user-select: none;
}

.svc-summary::-webkit-details-marker {
  display: none;
}

.svc-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}

.svc-title {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: var(--text);
}

.svc-chevron {
  margin-left: auto;
  opacity: 0.85;
  transition: transform 0.22s ease;
}

/* Contenido (animación suave) */
/* Contenido (animación suave real con JS) */
.svc-content {
  overflow: hidden;
  height: 0; /* cerrado por defecto */
  transition: height 280ms ease;
  padding: 0 14px; /* el padding inferior lo maneja el inner */
}

.svc-content__inner {
  padding: 0 0 12px; /* padding real del contenido */
  color: var(--muted);
  line-height: 1.65;
}

.svc-content__inner p {
  margin: 10px 0 0;
  font-size: 12px;
}

/* Cuando está abierto: el padding superior */
.svc-item[open] .svc-content {
  /* height lo setea JS */
}

/* Chevron ya lo tienes, esto queda igual */
.svc-item[open] .svc-chevron {
  transform: rotate(180deg);
}

.svc-content p {
  margin: 10px 0 0;
  font-size: 17px;
}

/* Estado abierto */
.svc-item[open] .svc-chevron {
  transform: rotate(180deg);
}

.svc-item[open] {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
}

/* Footer: botón abajo a la derecha */
.nlc-services__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.nlc-services__toggle {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    135deg,
    rgba(20, 198, 200, 0.95),
    rgba(90, 0, 168, 0.95)
  );
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nlc-services__toggle:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1100px) {
  .nlc-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .nlc-services__grid {
    grid-template-columns: 1fr;
  }
}

/* Evitar que secciones tapen el header por stacking context */
.nlc-section,
.nlc-services,
.nlc-services * {
  z-index: auto;
}

/* 3 columnas independientes */
.nlc-services__cols {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  align-items: flex-start; /* clave */
}

.nlc-services__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .nlc-services__cols {
    flex-wrap: wrap;
  }
  .nlc-services__col {
    flex: 1 1 calc(50% - 7px);
  }
}
@media (max-width: 700px) {
  .nlc-services__col {
    flex: 1 1 100%;
  }
}

/* ================= CLIENTES (WebOS real: imagen FULL + paralelogramo) ================= */

.webos-strip {
  width: 100%;
  margin-top: 18px;

  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;

  overflow: hidden;
  border-radius: 10px; /* leve */
  background: transparent; /* sin card */
}

/* Tile */
.webos-tile {
  position: relative;
  flex: 1 1 0;
  min-width: 140px; /* ajusta si quieres más tiles por fila */
  height: 300px; /* ✅ altura tipo tu referencia (sube/baja aquí) */

  border: 0;
  padding: 0;
  cursor: default;
  background: transparent;

  /* forma paralelogramo sin deformar contenido */
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);

  transition: transform 180ms ease, filter 180ms ease;
  will-change: transform;
  z-index: 1;
}

/* Imagen full (como tu Cine Center) */
.webos-tile > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* ✅ llena el tile */
  object-position: center;
}

/* Separadores inclinados (finos) */
.webos-tile::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10px;
  width: 2px;
  height: 200%;
  background: rgba(255, 255, 255, 0.55); /* línea clara tipo webOS */
  transform: skewX(-16deg);
  opacity: 0.55;
  pointer-events: none;
}
.webos-tile:last-child::after {
  display: none;
}

/* Hover: elevar como WebOS */
.webos-tile:hover {
  transform: translateY(-12px);
  filter: brightness(1.04) contrast(1.02);
  z-index: 10;
}

/* Si quieres que en hover se note más “profundidad” */
.webos-tile:hover > img {
  filter: saturate(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  .webos-strip {
    flex-wrap: wrap;
  }
  .webos-tile {
    flex: 1 1 33.33%;
    height: 82px;
  }
  .webos-tile::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .webos-tile {
    flex: 1 1 50%;
    min-width: 160px;
    height: 78px;
  }
}

#clientes.nlc-section {
  padding-top: 25px; /* reduce espacio arriba */
}

/* ===== TÍTULO NUESTROS CLIENTES ===== */
.nlc-clients__header {
  text-align: center;
  margin-bottom: 18px;
}

.nlc-clients__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.3px;
}

.nlc-clients__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

/* ===== AJUSTE HEADER / NAV (TV friendly) ===== */
.header__inner--full {
  height: 68px;
  padding: 0 24px;
}

body {
  padding-top: 68px;
}

.brand__logo-img {
  height: 52px;
  width: auto;
  border-radius: 18px;
}

.nav {
  gap: 12px;
}

.nav__link {
  font-size: 15px;
  padding: 9px 10px;
  border-radius: 12px;
}

.nav__link--highlight {
  padding: 9px 12px;
  border-radius: 14px;
}

/* ================= UBÍCANOS ================= */
.nlc-location {
  position: relative;
  overflow: hidden;
}

.nlc-location__header {
  text-align: center;
  margin-bottom: 18px;
}

.nlc-location__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.3px;
}

.nlc-location__subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.nlc-location__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 16px;
  align-items: stretch;
}

/* Mapa */
.nlc-location__map {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  min-height: 360px;
}

.nlc-location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* Card info */
.nlc-location__card {
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
  padding: 26px 24px;
}

.nlc-location__cardtitle {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: 0.2px;
}

.nlc-location__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nlc-location__row:last-of-type {
  border-bottom: 0;
}

.nlc-location__label {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.nlc-location__value {
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}

.nlc-location__link {
  text-decoration: none;
  color: var(--text);
}
.nlc-location__link:hover {
  text-decoration: underline;
}

/* Botones */
.nlc-location__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.nlc-location__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(
    135deg,
    rgba(20, 198, 200, 0.95),
    rgba(90, 0, 168, 0.95)
  );
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nlc-location__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.nlc-location__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 980px) {
  .nlc-location__grid {
    grid-template-columns: 1fr;
  }
  .nlc-location__map,
  .nlc-location__map iframe {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .nlc-location__card {
    padding: 22px 18px;
  }
  .nlc-location__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* Ajuste fino de anclaje solo para Ubícanos */
#ubicanos {
  scroll-margin-top: 30px; /* prueba 70-80 */
}

/* Ajuste fino de anclaje solo para Servicios */
#servicios {
  scroll-margin-top: 50px; /* prueba 70-80 */
}

/* Ajuste fino de anclaje solo para Ubícanos */
#mision-y-vision {
  scroll-margin-top: 5px; /* prueba 70-80 */
}

/* ================= CONTACTO ================= */
.nlc-contact {
  position: relative;
}

.nlc-contact__header {
  text-align: center;
  margin-bottom: 18px;
}

.nlc-contact__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: 0.3px;
}

.nlc-contact__subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.nlc-contact__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nlc-contact__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 26px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, border-color 180ms ease,
    background 180ms ease;
}

.nlc-contact__card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
}

.nlc-contact__name {
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.nlc-contact__role {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 700;
}

.nlc-contact__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nlc-contact__label {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.nlc-contact__value {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.4;
}

.nlc-contact__link:hover {
  text-decoration: underline;
}

.nlc-contact__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nlc-contact__wa::before {
  content: "💬";
  opacity: 0.95;
}

.nlc-contact__wa:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .nlc-contact__grid {
    grid-template-columns: 1fr;
  }
}

#contacto.nlc-section {
  padding-bottom: 20px;
}

/* ================= FOOTER ================= */
.nlc-footer {
  margin-top: 40px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 32, 0.85);
  backdrop-filter: blur(8px);
}

.nlc-footer__inner {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Redes */
.nlc-footer__socials {
  display: flex;
  gap: 10px;
}

.nlc-footer__social {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);

  transition: transform 180ms ease, background 180ms ease, filter 180ms ease;
}

.nlc-footer__social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  filter: brightness(1.05);
}

.nlc-footer__social .icon {
  font-size: 18px;
}

/* Copyright */
.nlc-footer__copy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

/* Responsive */
@media (max-width: 700px) {
  .nlc-footer__inner {
    flex-direction: column;
    gap: 12px;
  }
  .nlc-footer__copy {
    text-align: center;
  }
}

/* SVG redes sociales */
.nlc-footer__social img {
  width: 18px;
  height: 18px;
  display: block;

  /* Si tus SVG son negros, esto los vuelve claros */

  transition: filter 180ms ease, transform 180ms ease;
}

/* Hover */
.nlc-footer__social:hover img {
  filter: invert(1) opacity(1);
  transform: scale(1.08);
}
