/* ============================================================
   PERSONAL PROJECTS
   ============================================================ */
.personal {
  background: transparent;
  color: var(--base-text);
}
.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
@media (max-width: 860px) { .personal-grid { grid-template-columns: 1fr; } }

.personal-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.personal-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.personal-card__media {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #f0f0ec;
}
.personal-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.personal-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f0f0ec;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  color: #555;
}
.personal-card__name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
  color: #0a0a12;
}
.personal-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.9rem;
}
.personal-card__nfc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #1a73e8;
  background: #e8f0fe;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  margin-bottom: 1rem;
}
.personal-card .tech-pill-row { margin-bottom: 1rem; }
.personal-card .tech-pill {
  border-color: rgba(0,0,0,0.15);
  color: #555;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}
.personal-card .btn-demo {
  background: #0a0a12;
  color: #fff;
  border-color: #0a0a12;
}
.personal-card .btn-demo:hover { opacity: 0.85; }
.personal-card .btn-repo {
  color: #0a0a12;
  border-color: rgba(0,0,0,0.25);
}
.personal-card .btn-repo:hover { background: #0a0a12; color: #fff; }

/* ============================================================
   MAKER LAB — formato lista (sin videos)
   ============================================================ */
.maker-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.maker-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,194,201,0.2);
  border-left: 3px solid var(--esp32-turquoise);
  padding: 1.4rem 1.6rem;
}
.maker-item__name {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--esp32-text);
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.maker-item__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.35rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  align-items: start;
}
.maker-item__key { color: rgba(184,194,201,0.5); }
.maker-item__val { color: var(--esp32-silver); }
.maker-item__val span { opacity: 0.7; }
.maker-item .btn-row { margin-top: 1.1rem; }
.maker-item .btn-repo {
  color: var(--esp32-turquoise);
  border-color: rgba(25,230,196,0.4);
  font-size: 0.78rem;
}
.maker-item .btn-repo:hover { background: var(--esp32-turquoise); color: #08090a; }

/* ============================================================
   HOBBIES — ajedrez interactivo + lista
   ============================================================ */
.hobbies {
  background: transparent;
  color: #e8e8e4;
}
.hobbies__eyebrow { color: rgba(232,232,228,0.5); }
.hobbies__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 2.5rem;
}
/* Chess siempre a la izquierda */
.chess-wrap {
  flex-shrink: 0;
  flex-grow: 0;
  order: 0;
}
.hobbies__side {
  flex: 1;
  min-width: 0;
  order: 1;
  padding-top: 2rem;
}

@media (max-width: 860px) {
  .hobbies__layout {
    flex-direction: column;
    gap: 2rem;
  }
  .chess-wrap { order: 0; width: 100%; }
  .hobbies__side { order: 1; width: 100%; padding-top: 0; }
  #chess-board {
    width: 100%;
    grid-auto-rows: calc(100vw / 8);
  }
}

/* Tablero de ajedrez — estilo chess.com, celdas perfectamente cuadradas */
.chess-wrap {
  flex-shrink: 0;
  align-self: flex-start;
}
.chess-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(232,232,228,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
#chess-board {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  /* El truco: definir el tamaño del tablero por las columnas, no por el contenedor */
  width: min(400px, calc(100vw - 2rem));
  grid-auto-rows: calc(min(400px, calc(100vw - 2rem)) / 8);
  border: 3px solid #333;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  user-select: none;
  image-rendering: auto;
}
.chess-sq {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  /* Fuerza cuadrado perfecto */
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.chess-sq:hover { filter: brightness(1.1); }

/* Piezas */
.chess-piece {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: transform 0.1s ease;
  display: block;
}
.chess-sq:hover .chess-piece { transform: scale(1.12); }
.chess-piece--white {
  color: #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.8)) drop-shadow(0 0 3px rgba(0,0,0,0.6));
}
.chess-piece--black {
  color: #1a1a1a;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4));
}

/* Indicadores de movimiento válido */
.chess-hint-dot {
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: rgba(0,0,0,0.22);
  z-index: 1;
}
.chess-hint-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 4px solid rgba(0,0,0,0.22);
  z-index: 1;
}

/* Lista de hobbies */
.hobbies__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hobby-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(232,232,228,0.08);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(232,232,228,0.85);
  transition: color 0.2s ease, gap 0.2s ease;
}
.hobby-item:first-child { border-top: 1px solid rgba(232,232,228,0.08); }
.hobby-item:hover { color: #fff; gap: 1.3rem; }
.hobby-item i { font-size: 1.3rem; opacity: 0.7; flex-shrink: 0; }
.hobby-item:hover i { opacity: 1; }
.hobbies__chess-hint {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(232,232,228,0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Barras de estado del ajedrez */
.chess-top-bar, .chess-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(380px, 90vw);
  padding: 0.4rem 0.2rem;
}
.chess-turn-indicator {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.chess-turn--black { color: rgba(232,232,228,0.5); }
.chess-turn--white { color: rgba(232,232,228,0.85); }
.chess-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #769656;
  font-weight: 600;
}

/* Mobile chess */
@media (max-width: 860px) {
  .chess-top-bar, .chess-bottom-bar { width: 90vw; }
}

/* Badge para proyectos de emprendedores */
.personal-card__badge--emp {
  background: #fff8e6;
  border-color: rgba(200,120,0,0.25);
  color: #a06000;
}

/* ============================================================
   CLIENTES — Emprendedores y Empresas
   ============================================================ */
.clientes {
  background: transparent;
  color: var(--base-text);
}

/* Grid: FleetControl ocupa todo el ancho, los demás en 3 columnas */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
/* Primera card (enterprise) ocupa las 3 columnas */
.client-card--enterprise {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
@media (max-width: 980px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .clients-grid { grid-template-columns: 1fr; }
  .client-card--enterprise { grid-template-columns: 1fr; }
}

.client-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}
.client-card__media {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.client-card--enterprise .client-card__media {
  height: 100%;
  aspect-ratio: unset;
}
.client-card__body { padding: 1.4rem 1.5rem 1.6rem; }

/* Badges */
.client-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid;
  margin-bottom: 0.75rem;
}
.client-badge--sold {
  background: #f0faf0;
  border-color: rgba(20,120,50,0.3);
  color: #14783a;
}
.client-badge--emp {
  background: #fff8e6;
  border-color: rgba(180,100,0,0.25);
  color: #a06000;
}

.client-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
  color: #0a0a12;
}
.client-card--enterprise .client-card__name { font-size: 1.7rem; }
.client-card__tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #888;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.client-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}
.client-card .tech-pill { border-color: rgba(0,0,0,0.12); color: #666; }
.client-card .btn-demo {
  background: #0a0a12;
  color: #fff;
  border-color: #0a0a12;
  margin-top: 0.8rem;
}
.client-card .btn-demo:hover { opacity: 0.85; }
.client-card .btn-row { margin-top: 0; }

/* ---- Separadores de grupo en sección Clientes ---- */
.clients-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.4rem;
}
.clients-section-label__line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.12);
}
.clients-section-label__text {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  white-space: nowrap;
}
.clients-grid--enterprise {
  grid-template-columns: 1fr;
}
.clients-grid--enterprise .client-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}
.clients-grid--enterprise .client-card__media {
  height: 100%;
  aspect-ratio: unset;
  min-height: 240px;
}
@media (max-width: 760px) {
  .clients-grid--enterprise .client-card { grid-template-columns: 1fr; }
}

/* ---- NFC visual animado para Maker Lab ---- */
.maker-item--nfc {
  border-left-color: #00e5ff;
  position: relative;
  overflow: hidden;
}
.nfc-visual {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nfc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0,229,255,0.5);
  animation: nfc-pulse 2s ease-out infinite;
}
.nfc-ring--1 { width: 28px; height: 28px; animation-delay: 0s; }
.nfc-ring--2 { width: 48px; height: 48px; animation-delay: 0.4s; }
.nfc-ring--3 { width: 68px; height: 68px; animation-delay: 0.8s; border-color: rgba(0,229,255,0.2); }
@keyframes nfc-pulse {
  0%   { opacity: 1; transform: scale(0.85); }
  70%  { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}
.nfc-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #00e5ff;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
.maker-item--nfc .maker-item__name { color: #00e5ff; }
.maker-item--nfc { padding-right: 6rem; }
@media (max-width: 600px) {
  .nfc-visual { display: none; }
  .maker-item--nfc { padding-right: var(--space-md); }
}

/* ---- CTA Banner ---- */
.hero-cta-banner {
  background: rgba(0,0,0,0.06);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.85rem var(--space-md);
}
.hero-cta-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.92rem;
  color: #444;
  flex-wrap: wrap;
}
.hero-cta-banner__inner > .ph { font-size: 1.1rem; color: #888; }
.hero-cta-banner__btn {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a0a12;
  border: 1.5px solid rgba(0,0,0,0.25);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hero-cta-banner__btn:hover { background: #0a0a12; color: #fff; }
@media (max-width: 600px) { .hero-cta-banner__btn { margin-left: 0; } }

/* ---- Grids adicionales de clientes ---- */
.clients-grid--artistas {
  grid-template-columns: repeat(2, 1fr);
}
.clients-grid--artistas .client-card__media { aspect-ratio: 16/10; }
.clients-grid--artistas .client-card__name { font-size: 1.4rem; }

.clients-grid--emp {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .clients-grid--artistas,
  .clients-grid--emp { grid-template-columns: 1fr; }
}

/* Badge artista */
.client-badge--artista {
  background: #f5f0ff;
  border-color: rgba(100,60,180,0.25);
  color: #6428c8;
}

/* ---- Sección Contáctame ---- */
.contactame {
  background: transparent;
  color: #f0f0ee;
}
.contactame__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.45);
  margin-bottom: 0.8rem;
}
.contactame__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.2rem;
  line-height: 1.15;
}
.contactame__lead {
  color: rgba(240,240,238,0.65);
  margin-bottom: 1rem;
}
.contactame__layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}
@media (max-width: 860px) {
  .contactame__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contactame__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contactame__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: rgba(240,240,238,0.8);
}
.contactame__list li .ph { color: rgba(240,240,238,0.45); font-size: 1.1rem; flex-shrink: 0; }

.contactame__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-width: 300px;
  backdrop-filter: blur(6px);
}
.contactame__card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.4);
  margin-bottom: 1.2rem;
}
.contactame__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contactame__link:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.contactame__link > .ph:first-child { font-size: 1.5rem; opacity: 0.8; }
.contactame__link-name { font-size: 0.72rem; opacity: 0.55; font-family: var(--font-mono); margin-bottom: 2px; }
.contactame__link-val { font-size: 0.9rem; font-weight: 600; }
.contactame__link-arrow { margin-left: auto; opacity: 0.4; font-size: 1rem; }
.contactame__link:hover .contactame__link-arrow { opacity: 0.9; }

/* ============================================================
   ¿QUIÉN HACE TU PÁGINA WEB?
   ============================================================ */
.quien {
  background: transparent;
  color: #f0f0ee;
}
.quien__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}
@media (max-width: 860px) { .quien__layout { grid-template-columns: 1fr; gap: 2.5rem; } }

.quien__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.4);
  margin-bottom: 1rem;
}
.quien__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1.2rem;
  line-height: 1.05;
}
.quien__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(240,240,238,0.7);
  margin-bottom: 2rem;
  max-width: 520px;
}
.quien__categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  margin-bottom: 2rem;
}
@media (max-width: 500px) { .quien__categories { grid-template-columns: 1fr; } }
.quien__cat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(240,240,238,0.75);
}
.quien__cat .ph { color: rgba(240,240,238,0.4); font-size: 1rem; flex-shrink: 0; }

.quien__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.quien__btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: #0a0a12;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.quien__btn-main:hover { opacity: 0.88; }
.quien__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.quien__btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Stats */
.quien__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.quien__stat {
  background: rgba(255,255,255,0.04);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.quien__stat-num { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.quien__stat-label { font-size: 0.72rem; color: rgba(240,240,238,0.5); font-family: var(--font-mono); }
.quien__quote {
  font-style: italic;
  color: rgba(240,240,238,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  border-left: 3px solid rgba(255,255,255,0.2);
  padding-left: 1rem;
  margin: 0;
}

/* ============================================================
   WEBS INTERACTIVAS
   ============================================================ */
.webs-inter { background: transparent; color: #f0f0ee; }
.webs-inter__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 900px) { .webs-inter__grid { grid-template-columns: 1fr; } }
.webs-inter__feature-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(240,240,238,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.webs-inter__feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
}
.webs-inter__feature-desc {
  font-size: 0.85rem;
  color: rgba(240,240,238,0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  max-width: 380px;
}
.webs-inter__caps {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 2rem;
}
.webs-inter__cap {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.webs-inter__cap:hover { background: rgba(255,255,255,0.07); }
.webs-inter__cap > .ph { font-size: 1.3rem; color: rgba(240,240,238,0.5); flex-shrink: 0; margin-top: 2px; }
.webs-inter__cap strong { display: block; font-size: 0.9rem; color: #fff; margin-bottom: 2px; }
.webs-inter__cap span { font-size: 0.8rem; color: rgba(240,240,238,0.55); line-height: 1.4; }

/* ============================================================
   NFC SHOWCASE en Maker Lab
   ============================================================ */
.nfc-showcase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.2);
  border-left: 4px solid #00e5ff;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .nfc-showcase { grid-template-columns: 1fr; } }
.nfc-showcase__img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.3));
  animation: nfc-rotate 20s linear infinite;
}
@keyframes nfc-rotate {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.nfc-showcase__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #00e5ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.nfc-showcase__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--esp32-text);
  margin: 0 0 0.8rem;
  line-height: 1.3;
}
.nfc-showcase__desc {
  font-size: 0.88rem;
  color: var(--esp32-silver);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.nfc-showcase__uses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 500px) { .nfc-showcase__uses { grid-template-columns: 1fr; } }
.nfc-use {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(184,194,201,0.8);
}
.nfc-use .ph { color: #00e5ff; font-size: 0.9rem; flex-shrink: 0; }
.nfc-showcase__note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(0,229,255,0.6);
  border-top: 1px solid rgba(0,229,255,0.15);
  padding-top: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* ---- Hover effects especiales por cliente ---- */

/* FleetControl — borde y glow ROJO */
.client-card[data-client-id="fleetcontrol"] {
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}
.client-card[data-client-id="fleetcontrol"]:hover {
  transform: translateY(-6px);
  border-color: rgba(220,30,30,0.6);
  box-shadow:
    0 0 0 1px rgba(220,30,30,0.3),
    0 20px 50px rgba(220,30,30,0.25),
    0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive estudiantes 2x2 */
@media (max-width: 640px) {
  [data-mount="student"] > div {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios { background: transparent; color: #f0f0ee; }

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
@media (max-width: 860px) { .servicios-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .servicios-grid { grid-template-columns: 1fr; } }

.servicio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease);
  cursor: default;
}
.servicio-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}
.servicio-card__icon {
  font-size: 2rem;
  color: rgba(240,240,238,0.5);
  display: block;
}
.servicio-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.servicio-card__desc {
  font-size: 0.82rem;
  color: rgba(240,240,238,0.4);
  margin: 0;
  font-style: italic;
}

/* Proceso de 3 pasos */
.proceso-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.proceso-step {
  flex: 1;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.proceso-step__line {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  flex-shrink: 0;
}
.proceso-step__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(240,240,238,0.3);
  letter-spacing: 0.08em;
}
.proceso-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.proceso-step p {
  font-size: 0.85rem;
  color: rgba(240,240,238,0.6);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 640px) {
  .proceso-steps { flex-direction: column; }
  .proceso-step__line { width: auto; height: 1px; }
}

/* ============================================================
   SEGURIDAD — herramientas locales (contraseñas + URLs)
   ============================================================ */
.seguridad {
  background: transparent;
  color: #fff;
}
.seguridad .ciber-tools {
  padding: var(--space-md) 0 0;
}
