/* ============================================================
   Estilos propios: proyecto estrella NODIO + modal de proyectos
   (mismo acento cian #2fc0d1 y misma paleta clara que el resto de la web)
   ============================================================ */

/* ---------- Bloque destacado NODIO ---------- */
.nodio-feature {
  position: relative;
  margin: 0 0 42px;
  padding: 30px 30px 26px;
  border-radius: 6px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
}
.nodio-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.nodio-brand { display: flex; align-items: center; gap: 14px; }
.nodio-logo {
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2px;
  color: #333;
}
.nodio-logo span { color: #2fc0d1; }
.nodio-flag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1c8b98;
  background: transparent;
  border: 1px solid #2fc0d1;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 500;
}
.nodio-tagline {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2fc0d1;
}

.nodio-body { display: flex; }
.nodio-copy-full { width: 100%; }

.nodio-copy h3 {
  color: #333;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  margin-bottom: 14px;
}
.nodio-copy p { color: #666; font-size: 14px; line-height: 1.75; }
.nodio-copy strong { color: #444; }

.nodio-pillars { margin: 20px 0 4px; display: grid; gap: 14px; }
.npil {
  background: rgba(47,192,209,0.05);
  border-left: 3px solid #2fc0d1;
  border-radius: 0 4px 4px 0;
  padding: 14px 16px;
}
.npil i { color: #2fc0d1; font-size: 24px; line-height: 1; vertical-align: middle; }
.npil h4 {
  display: inline-block;
  font-family: Oswald, sans-serif;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .5px;
  margin: 0 0 4px 8px;
  vertical-align: middle;
}
.npil p { margin: 0; font-size: 13px; color: #666; line-height: 1.7; }

.nodio-diff {
  margin-top: 18px;
  padding: 12px 14px;
  background: rgba(47,192,209,0.06);
  border-radius: 6px;
  color: #666;
  font-size: 13.5px !important;
}
.nodio-diff strong { color: #1f8b98; }

/* ---------- Modal de proyecto / galería ---------- */
.proj-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
}
.proj-modal.open { display: block; }
.pm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 24, 0.82);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.pm-dialog {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1080px, 94vw);
  max-height: 92vh;
  overflow: auto;
  background: #fff;
  border-radius: 10px;
  display: flex;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: pmIn .22s ease;
}
@keyframes pmIn { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }
.pm-close {
  position: absolute;
  top: 10px; right: 12px;
  z-index: 3;
  width: 38px; height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.pm-close:hover { background: #2fc0d1; }

.pm-media {
  flex: 1 1 56%;
  min-width: 0;
  background: #0d1f2b;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 10px 0 0 10px;
}
#pm-img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}
.pm-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-thumb {
  width: 74px; height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #08161d;
  opacity: .6;
  transition: opacity .2s ease, border-color .2s ease;
}
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pm-thumb.active, .pm-thumb:hover { opacity: 1; border-color: #2fc0d1; }

.pm-info { flex: 1 1 44%; min-width: 0; padding: 34px 30px 30px; }
.pm-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1c8b98;
  border: 1px solid #2fc0d1;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.pm-info h3 { font-size: 22px; color: #222; margin-bottom: 12px; line-height: 1.3; }
#pm-lead { font-size: 14px; color: #555; line-height: 1.6; }
.pm-block { margin-top: 20px; }
.pm-block h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #2fc0d1;
  margin-bottom: 10px;
}
#pm-feat { margin: 0; padding-left: 18px; }
#pm-feat li { font-size: 13.5px; color: #555; margin-bottom: 6px; line-height: 1.5; }
.pm-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pm-tags span {
  font-size: 12px;
  color: #1c8b98;
  background: rgba(47, 192, 209, 0.1);
  border: 1px solid rgba(47, 192, 209, 0.4);
  padding: 3px 10px;
  border-radius: 3px;
}

/* clic-abre en las tarjetas del grid */
#portfolio_grid figure[data-proj] { cursor: pointer; }

/* lista de responsabilidades en el timeline */
.timeline-event .event-list {
  margin: 8px 0 0;
  padding-left: 16px;
  list-style: none;
}
.timeline-event .event-list li {
  position: relative;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 6px;
  padding-left: 14px;
}
.timeline-event .event-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2fc0d1;
}
.timeline-event .event-list strong { color: #444; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pm-dialog { flex-direction: column; width: 96vw; }
  .pm-media { border-radius: 10px 10px 0 0; }
  .pm-info { padding: 24px 22px; }
}
@media (max-width: 480px) {
  .nodio-feature { padding: 22px 18px; }
  .nodio-copy h3 { font-size: 19px; }
}

/* ============================================================
   INICIO — red de nodos animada
   ============================================================ */
/* Ojo: .pt-page ya es position:absolute — no lo pisamos o rompe las transiciones.
   Sirve igual de contenedor posicionado para el canvas. */
.hero-net-section {
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #12323d 0%, #0c1f28 55%, #081419 100%);
}
.hero-net-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}
/* Velo radial: apaga los nodos justo detrás del texto para que se lea limpio */
.hero-net-veil {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(8,20,25,0.86) 0%, rgba(8,20,25,0.60) 32%, rgba(8,20,25,0.12) 62%, rgba(8,20,25,0) 80%);
  pointer-events: none;
}
.hero-net-section .home-page-block { position: relative; z-index: 2; }

.hero-content { text-align: center; padding: 0 22px; }

.hero-eyebrow {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2fc0d1;
  padding: 5px 14px;
  border: 1px solid rgba(47,192,209,0.35);
  border-radius: 3px;
  margin-bottom: 26px;
}
.hero-name {
  color: #fff;
  font-size: 64px;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: 1px;
}
.hero-role {
  font-family: Oswald, sans-serif;
  font-size: 22px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7fd9e4;
  margin: 0 0 26px;
}
.hero-claim {
  color: #b9ccd4;
  font-size: 16px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 38px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-btn {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid rgba(47,192,209,0.45);
  border-radius: 3px;
  color: #cfe7ec;
  background: rgba(47,192,209,0.06);
  transition: background .22s, color .22s, border-color .22s, transform .22s;
}
.hero-btn:hover,
.hero-btn:focus {
  background: rgba(47,192,209,0.16);
  border-color: #2fc0d1;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.hero-btn-primary {
  background: #2fc0d1;
  border-color: #2fc0d1;
  color: #06222a;
  font-weight: 500;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
  background: #45d3e3;
  border-color: #45d3e3;
  color: #06222a;
}

/* Acceso directo al proyecto que está en desarrollo activo */
.hero-nodio-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-family: Oswald, sans-serif;
  font-size: 12.5px;
  letter-spacing: 1px;
  color: #9fd8e0;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(47,192,209,0.3);
  transition: color .2s, border-color .2s, gap .2s;
}
.hero-nodio-link strong { color: #7fe3ee; font-weight: 600; }
.hero-nodio-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2fc0d1;
  box-shadow: 0 0 0 3px rgba(47,192,209,0.25);
  animation: heroNodioPulse 2s ease-in-out infinite;
}
@keyframes heroNodioPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-nodio-arrow { transition: transform .2s; }
.hero-nodio-link:hover,
.hero-nodio-link:focus {
  color: #fff;
  border-color: #2fc0d1;
  text-decoration: none;
  gap: 13px;
}
.hero-nodio-link:hover .hero-nodio-arrow { transform: translateX(3px); }

@media (max-width: 768px) {
  .hero-nodio-link { font-size: 11.5px; text-align: center; }
}

@media (max-width: 768px) {
  .hero-name  { font-size: 38px; }
  .hero-role  { font-size: 16px; letter-spacing: 3px; }
  .hero-claim { font-size: 14px; }
  .hero-btn   { padding: 11px 20px; font-size: 12px; }
}

/* ============================================================
   ÁREAS DE TRABAJO — 6 bloques a 3 columnas
   ============================================================ */
.area-row { display: flex; flex-wrap: wrap; }
.area-block { height: 100%; }
.area-block .service-info p { font-size: 13px; line-height: 1.8; }

/* ============================================================
   REJILLA DE TECNOLOGÍAS (logos de marca)
   ============================================================ */
.tech-cat {
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2fc0d1;
  margin: 26px 0 10px;
}
.tech-cat:first-child { margin-top: 6px; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 12px;
}
.tech-item {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 16px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: border-color .2s, background .2s, transform .2s;
  cursor: default;
}
.tech-item:hover {
  border-color: #2fc0d1;
  background: #fff;
  transform: translateY(-2px);
}
/* Los logos de marca son SVG monocromos: se atenúan en reposo y se avivan al pasar */
.tech-item img {
  width: 26px; height: 26px;
  object-fit: contain;
  opacity: .42;
  transition: opacity .2s;
}
.tech-item:hover img { opacity: .85; }
/* Los SVG en línea heredan el color del contenedor */
.tech-item svg {
  width: 26px; height: 26px;
  color: #b0b0b0;
  transition: color .2s;
}
.tech-item:hover svg { color: #2fc0d1; }
.tech-item .t-name {
  font-size: 10.5px;
  color: #888;
  text-align: center;
  line-height: 1.35;
  font-weight: 500;
  transition: color .2s;
}
.tech-item:hover .t-name { color: #444; }

/* ============================================================
   DIAGRAMA DE ARQUITECTURA DE LA PLATAFORMA
   ============================================================ */
.arch-intro {
  font-size: 13px;
  line-height: 1.8;
  color: #777;
  margin-bottom: 20px;
}
.arch-diagram {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 24px 20px;
}
.arch-label {
  font-family: Oswald, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0a0a0;
  margin-bottom: 9px;
}
.arch-layer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.arch-node {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 9px 13px;
  font-size: 12px;
  color: #555;
  transition: border-color .2s, box-shadow .2s;
}
.arch-node:hover {
  border-color: #2fc0d1;
  box-shadow: 0 2px 10px rgba(47,192,209,0.12);
}
.arch-node img { width: 16px; height: 16px; object-fit: contain; opacity: .5; }
.arch-node svg  { width: 16px; height: 16px; color: #b0b0b0; }
/* Nodos destacados: la entrada y el núcleo PAM */
.arch-node.arch-accent {
  border-color: rgba(47,192,209,0.5);
  background: rgba(47,192,209,0.06);
  color: #1f8b98;
  font-weight: 500;
}
.arch-connector {
  text-align: center;
  color: #2fc0d1;
  font-size: 16px;
  line-height: 1;
  margin: 10px 0 14px;
}
.arch-separator {
  height: 1px;
  background: #e8e8e8;
  margin: 20px 0 18px;
}

@media (max-width: 600px) {
  .tech-grid    { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 9px; }
  .arch-node    { font-size: 11px; padding: 8px 10px; }
  .arch-diagram { padding: 18px 13px; }
}

/* ============================================================
   EXPERIENCIA — acordeón por puesto
   ============================================================ */
.xp-accordion {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.xp-item + .xp-item { border-top: 1px solid #e8e8e8; }

/* Cabecera: siempre visible, es el botón que pliega/despliega */
.xp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: #fff;
  border: 0;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s, border-left-color .2s;
}
.xp-head:hover      { background: #fafcfc; border-left-color: rgba(47,192,209,0.4); }
.xp-head:focus      { outline: none; background: #fafcfc; }
.xp-head:focus-visible { outline: 2px solid #2fc0d1; outline-offset: -2px; }
.xp-item.is-open .xp-head { background: #fafcfc; border-left-color: #2fc0d1; }

.xp-head-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.xp-role {
  font-family: Oswald, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}
.xp-item.is-open .xp-role { color: #2fc0d1; }
.xp-company { font-size: 13px; color: #888; }

.xp-head-side {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.xp-date {
  font-family: Oswald, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  white-space: nowrap;
}
/* El puesto actual se marca en el color de acento */
.xp-date-now { color: #2fc0d1; }
.xp-chevron {
  font-size: 20px;
  color: #bbb;
  transition: transform .25s, color .2s;
}
.xp-item.is-open .xp-chevron { transform: rotate(180deg); color: #2fc0d1; }

/* Cuerpo plegable */
.xp-body { display: none; }
.xp-item.is-open .xp-body { display: block; }
.xp-body-inner { padding: 4px 24px 24px 25px; }

.xp-lead {
  font-size: 14px;
  line-height: 1.85;
  color: #666;
  margin-bottom: 18px;
}
.xp-body .event-list { margin: 0; padding-left: 18px; }
.xp-body .event-list li {
  font-size: 13.5px;
  line-height: 1.8;
  color: #777;
  margin-bottom: 9px;
}
.xp-body .event-list strong { color: #555; }

/* Bloque de proyecto destacado */
.xp-highlight {
  position: relative;
  background: rgba(47,192,209,0.05);
  border-left: 3px solid #2fc0d1;
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.xp-highlight-tag {
  display: inline-block;
  font-family: Oswald, sans-serif;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1f8b98;
  margin-bottom: 7px;
}
.xp-highlight h5 {
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px;
}
.xp-highlight p {
  font-size: 13px;
  line-height: 1.8;
  color: #6b6b6b;
  margin: 0;
}

/* NODIO: proyecto propio en desarrollo activo. Mismo acento cian que el resto
   de highlights, solo un poco más marcado para que destaque como el primero. */
.xp-highlight-active {
  background: rgba(47,192,209,0.08);
  border-left-width: 4px;
}
.xp-highlight-tag-active { color: #1f8b98; }
.xp-highlight-link {
  display: inline-block;
  margin-top: 12px;
  font-family: Oswald, sans-serif;
  font-size: 11.5px;
  letter-spacing: .5px;
  color: #1f8b98;
  border-bottom: 1px solid rgba(47,192,209,0.35);
  transition: color .2s, border-color .2s;
}
.xp-highlight-link:hover {
  color: #146b76;
  border-color: #146b76;
  text-decoration: none;
}

/* Chips de tecnología */
.xp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.xp-tags span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .4px;
  color: #777;
  background: #f4f6f7;
  border: 1px solid #e4e8ea;
  border-radius: 3px;
  padding: 5px 11px;
  transition: border-color .2s, color .2s;
}
.xp-tags span:hover { border-color: #2fc0d1; color: #2fc0d1; }
.xp-tags-soft { margin-top: 4px; margin-bottom: 26px; }

.nodio-tags { margin-top: 22px; }

@media (max-width: 600px) {
  .xp-head       { flex-direction: column; align-items: flex-start; gap: 9px; padding: 16px 15px; }
  .xp-head-side  { width: 100%; justify-content: space-between; }
  .xp-role       { font-size: 15px; }
  .xp-body-inner { padding: 2px 15px 20px 18px; }
}

/* ============================================================
   TOGGLE DE IDIOMA ES/EN
   ============================================================ */
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(47,192,209,0.4);
  border-radius: 4px;
  overflow: hidden;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 13px;
  border: 0;
  background: transparent;
  color: #8c8c8e;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lang-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  filter: grayscale(1) opacity(.55);
  transition: filter .2s;
}
.lang-btn.active { background: #2fc0d1; color: #06222a; }
.lang-btn.active .lang-flag { filter: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.25); }
.lang-btn:not(.active):hover { color: #2fc0d1; }
.lang-btn:not(.active):hover .lang-flag { filter: grayscale(.3) opacity(.85); }

/* Instancia flotante en el Inicio (fondo oscuro) */
.lang-switch-hero {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 5;
  border-color: rgba(47,192,209,0.45);
  background: rgba(8,20,25,0.55);
  backdrop-filter: blur(2px);
}
.lang-switch-hero .lang-btn { color: #9fd8e0; }
.lang-switch-hero .lang-btn.active { color: #06222a; }

/* Instancia fija en el header lateral (fondo claro).
   Es inline-flex (por .lang-switch), así que margin:auto no la centra;
   se centra por posición independientemente de cómo alinee el padre. */
.lang-switch-header {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 14px;
}

@media (max-width: 768px) {
  .lang-switch-hero { top: 14px; right: 14px; }
}

/* ============================================================
   CARRUSEL DE TECNOLOGÍAS (owl-carousel, un slide por categoría)
   ============================================================ */
.tech-carousel-wrap {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 24px;
}
/* owl.carousel pone position:relative en su propio elemento raíz, así que
   las flechas/puntos (hijos directos, position:absolute) se posicionan
   respecto a ÉL, no respecto al wrap: el hueco reservado va aquí. */
.tech-carousel { padding-bottom: 46px; }
.tech-slide { padding: 2px 2px 0; }

/* El nombre de categoría hace de "título de slide": más presencia que antes */
.tech-slide .tech-cat {
  text-align: center;
  font-size: 12px;
  margin: 0 0 16px;
}

/* Flechas: mismo lenguaje visual que el carrusel de testimonials del tema
   (círculo gris claro en reposo, acento cian al hover) */
.tech-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 4px;
}
.tech-carousel .owl-nav .owl-prev { margin-right: 6px; }
.tech-carousel .owl-nav .owl-prev,
.tech-carousel .owl-nav .owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #eee;
  color: #888;
  transition: background-color .2s, color .2s;
}
.tech-carousel .owl-nav .owl-prev:hover,
.tech-carousel .owl-nav .owl-next:hover {
  background-color: #2fc0d1;
  color: #fff;
}
.tech-carousel .owl-nav .owl-prev:before,
.tech-carousel .owl-nav .owl-next:before {
  font-family: FontAwesome;
  font-size: 13px;
  line-height: 1;
}
.tech-carousel .owl-nav .owl-prev:before { content: "\f104"; }
.tech-carousel .owl-nav .owl-next:before { content: "\f105"; }

/* Puntos: centrados, mismo acento cian.
   pointer-events:none en el contenedor para que la franja invisible que
   ocupa todo el ancho no tape el clic de las flechas de nav. */
.tech-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  pointer-events: none;
}
.tech-carousel .owl-dots .owl-dot { display: inline-block; pointer-events: auto; }
.tech-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px;
  display: block;
  border-radius: 50%;
  background: #e0e0e0;
  transition: background-color .2s, transform .2s;
}
.tech-carousel .owl-dots .owl-dot:hover span { background: #b8e6ec; }
.tech-carousel .owl-dots .owl-dot.active span { background: #2fc0d1; transform: scale(1.15); }

@media (max-width: 600px) {
  .tech-carousel-wrap { padding: 16px 14px; }
}
