/* =========================================================
   VARIABLES
   ========================================================= */
:root{
  --bg:#0b0f14;
  --surface:#11161c;
  --text:#e5e7eb;
  --muted:#9aa4b2;

  --accent:#c4b5fd;       /* lila formal */
  --accent-2:#22d3ee;     /* cian suave (solo para luces) */

  --radius:16px;
  --max:1120px;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*{ box-sizing:border-box; }
html,body{ margin:0; }
html{ scroll-behavior:smooth; }
img{ max-width:100%; height:auto; }


body{
  background:#070814;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

/* Fondo global (difuminado, full-page) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(900px 700px at 20% 15%, rgba(124,58,237,.32), transparent 60%),
    radial-gradient(900px 700px at 80% 25%, rgba(236,72,153,.20), transparent 60%),
    radial-gradient(900px 700px at 60% 85%, rgba(34,211,238,.18), transparent 65%),
    linear-gradient(180deg, #050615 0%, #07081a 55%, #050615 100%);
}

/* Spotlight que sigue el ratón (más pequeño) */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;

  background: radial-gradient(
    150px circle at var(--mx, 50%) var(--my, 30%),
    rgba(124,58,237,0.22),
    transparent 60%
  );
}

/* Mantener contenido por encima del fondo */
.nav, main { position:relative; z-index:1; }

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */
h1{
  font-size: clamp(34px, 6vw, 56px);
  margin:0 0 12px;
}

.section-title{
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;

  background: linear-gradient(90deg, rgba(196,181,253,1), rgba(34,211,238,.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow: 0 0 26px rgba(196,181,253,.12);
  position: relative;
}

.section-title::after{
  content:"";
  display:block;
  width: 72px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120,120,255,.9), rgba(200,120,255,.9));
  opacity: .9;
}

.section-lead{
  max-width: 980px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
}

p{
  color:var(--muted);
  line-height:1.7;
}

/* =========================================================
   LAYOUT GENERAL
   ========================================================= */
.section{
  max-width: var(--max);
  margin:0 auto;
  padding: 96px 20px;
}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: sticky;
  top: 0;
  z-index: 10;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:12px 20px;
  backdrop-filter:saturate(140%) blur(12px);
  background:rgba(11,15,20,.7);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;

  font-weight:800;
  color:var(--text);
  text-decoration:none;
}

.brand img{
  height: 40px;
  width: auto;
  filter: drop-shadow(0 10px 26px rgba(196,181,253,.35));
}

.nav nav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* Botones del nav (sin gradiente, más formal) */
.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 10px 14px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:800;

  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.nav-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
}

/* Botón principal (Contacto) */
.nav-btn--primary{
  background: rgba(196,181,253,.85);
  border-color: rgba(196,181,253,.65);
  color: #0b0f14; /* negro */
}
.nav-btn--primary:hover{
  color:#fff;
}

.nav-wrap{ display:flex; align-items:center; gap:12px; }
.nav-toggle{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin: 7px 10px;
  background: rgba(255,255,255,.85);
  border-radius:999px;
}

.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9;
}

@media (max-width: 900px){
  /* Si NO hay JS, no escondas el menú (porque no hay toggle) */
  .js .nav-toggle{ display:inline-block; }

  .js .nav-links{
    display:none;
    position: fixed;
    top: 70px;
    right: 12px;
    left: 12px;
    z-index: 10;

    padding: 12px;
    border-radius: 18px;
    background: rgba(6,10,22,.92);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);

    flex-direction: column;
    gap: 10px;
  }
  .js .nav-links.open{ display:flex; }
}


/* Toggle idioma tipo “pill” */
.lang-toggle{
  display:inline-flex;
  gap:4px;
  padding:4px;

  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);

  cursor:pointer;
  user-select:none;
}

.lang-pill{
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--text);
  opacity: .7;
  transition: .15s ease;
}
.lang-pill.active{
  opacity: 1;
  background: rgba(196,181,253,.85);
  color: #0b0f14;
}

/* =========================================================
   BOTONES (sin gradiente)
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background: rgba(196,181,253,.85);
  border: 1px solid rgba(196,181,253,.65);
  color:#0b0f14;

  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;

  transition: transform .15s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{
  transform: translateY(-2px);
  color:#fff;
  background: rgba(196,181,253,.92);
}
.btn:active{ transform: translateY(0); }

/* Iconos dentro de botones/cards (LinkedIn) */
.btn-icon{
  width: 22px;   /* ✅ más grande “de verdad” */
  height: 22px;
  object-fit: contain;
  transform: translateY(1px);
}

/* Botón hover más “premium” */
.btn--hero{
  position: relative;
  overflow:hidden;
}
.btn--hero i{
  transition: transform .18s ease;
}
.btn--hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.10);
  transform: translateX(-110%);
  transition: transform .25s ease;
}
.btn--hero:hover::before{ transform: translateX(0); }
.btn--hero:hover i{ transform: translateX(4px); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  min-height: 80vh;
  display:grid;
  place-items:center;
  text-align:center;
  position: relative;
  overflow: hidden;
}

/* Spotlight solo en hero (usa --hx/--hy) */
.hero::after{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background: radial-gradient(
    220px circle at var(--hx, 50%) var(--hy, 40%),
    rgba(34,211,238,0.18),
    transparent 60%
  );
}

.hero-logo{
  width: clamp(120px, 12vw, 200px);
  height: auto;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.55));
  margin-bottom: 14px;
}

.hero-sub{
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #ffffff;
  margin: 6px 0 18px;
}

.hero-title{
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
}

.hero-title .glow{
  background: linear-gradient(90deg, rgba(120,120,255,.95), rgba(200,120,255,.95), rgba(120,255,220,.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(180,120,255,.22);
}

/* Reveal suave */
.js .hero-logo,
.js .hero-title,
.js .hero-sub,
.js .btn--hero{
  opacity:0;
  transform: translateY(14px);
  animation: heroIn .9s ease forwards;
}
.js .hero-title{ animation-delay: .08s; }
.js .hero-sub{ animation-delay: .18s; }
.js .btn--hero{ animation-delay: .28s; }

@keyframes heroIn{
  to{ opacity:1; transform: translateY(0); }
}

/* ATS/SEO ven el texto en el HTML igualmente */
.js .fallback{ display:none; }


/* =========================================================
   CARDS (skills/xp/projects)
   - Más opacas + borde más sólido (mejor legibilidad)
   ========================================================= */
.card{
  position:relative;
  overflow:hidden;

  border-radius: var(--radius);
  padding: 18px;

  background: rgba(10, 12, 28, 0.82);
  border: 1px solid rgba(255,255,255,.14);

  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card .card-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 700;
  margin: 0 0 10px;
}

.card .card-title i{
  font-size: 1.05rem;
  opacity: .95;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  opacity: .92;
}

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
  opacity: .95;
}

.chip i{ font-size: 1.05rem; }

.timeline{
  display:flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.t-item{
  display:grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
}

.t-dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(200,120,255,.9);
  box-shadow: 0 0 18px rgba(200,120,255,.25);
  margin-top: 6px;
}

.t-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 14px 16px;
}
.t-meta{ opacity:.78; font-size:.95rem; margin-top: 2px; }
.t-tech{ margin-top: 10px; display:flex; flex-wrap:wrap; gap:10px; opacity:.95; }
.t-tech i{ font-size: 1.15rem; }

/* =========================================================
   SKILLS / XP GRIDS
   ========================================================= */
#skills-grid, #xp-list{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Skills list */
.skill-card ul{ list-style:none; padding:0; margin:0; }
.skill-card li{ color:var(--muted); margin-bottom:4px; font-size:14px; }
.skill-card li::before{ content:"• "; color: var(--accent-2); }

/* =========================================================
   PROJECTS — Carrusel (Opción A)
   ========================================================= */
.carousel{
  display:grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 16px;
  align-items:center;
}

.carousel-stage{
  min-height: 360px;
  display:flex;
  justify-content:center;
}

.carousel-stage .project-card{
  width: 100%;
  max-width: 760px;
}

.carousel-btn{
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.carousel-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.32);
  background: rgba(0,0,0,.26);
}
.carousel-btn:active{ transform: translateY(0); }

.carousel-dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 14px;
}
.carousel-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  opacity:.85;
  transition: transform .15s ease, opacity .15s ease;
}
.carousel-dot:hover{ transform: scale(1.15); opacity:1; }
.carousel-dot.active{ background: rgba(255,255,255,.55); opacity:1; }

/* Project card internals */
.project-thumb{
  height: 140px;
  border-radius: calc(var(--radius) - 4px);
  margin: -4px -4px 12px -4px;

  display:flex;
  align-items:center;
  justify-content:center;

  position: relative;
  overflow: hidden;

  /* Colores por defecto del thumb (se pueden “tunear” por clase) */
  --a: rgba(124,58,237,.35);
  --b: rgba(34,211,238,.22);

  /* Fondo: rejilla + luces + base */
  background:
    /* grid (rejilla) */
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.06) 0 1px,
      transparent 1px 22px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.06) 0 1px,
      transparent 1px 22px
    ),
    /* glow corners */
    radial-gradient(circle at 0% 0%, var(--a), transparent 55%),
    radial-gradient(circle at 100% 100%, var(--b), transparent 55%),
    /* base */
    linear-gradient(135deg, #050816, #0b0f14);
}

/* capa para “suavizar” un poco el grid */
.project-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}

.project-card .tech{
  margin: 12px 0;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.project-card .tech span{
  background: rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--accent-2);
  border: 1px solid rgba(255,255,255,.12);
}

/* ✅ más espacio entre +info y GitHub */
.project-card details{
  margin: 10px 0 22px;
  color: var(--muted);
}

.project-card details summary{
  cursor:pointer;
  color: #c4b5fd;
  font-weight: 700;
}

.project-icon{
  position: relative;
  z-index: 1;

  font-size: 56px;
  color: rgba(255,255,255,.92);

  filter: drop-shadow(0 10px 26px rgba(0,0,0,.55));
  opacity: .95;
}

.project-thumb.thumb-powerapps{ --a: rgba(196,181,253,.38); --b: rgba(34,211,238,.20); }
.project-thumb.thumb-desktop{  --a: rgba(148,163,184,.30); --b: rgba(196,181,253,.22); }
.project-thumb.thumb-android{  --a: rgba(34,197,94,.22);  --b: rgba(244,114,182,.18); }


/* =========================================================
   CV
   ========================================================= */
.cv-text{
  text-align:center;
  max-width: 860px;
  margin: 0 auto 18px;
  font-weight: 800;
  color: rgba(255,255,255,.82);
}
.cv-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 14px;
}

/* =========================================================
   CONTACT (más formal, estilo “cards” + form)
   ========================================================= */
#contact.section{
  max-width: 1320px; /* ✅ más ancho */
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(6,10,22,.70);
  padding-bottom: 18px; /* ✅ menos espacio bajo el footer */
}

/* ===== CONTACT: titulo centrado + separador ancho ===== */
#contact .section-title{
  text-align: center;
}

#contact .section-title::after{
  width: min(1100px, 92%);
  margin-left: auto;
  margin-right: auto;
}

.contact-lead{
  text-align:center;                 /* ✅ centrada */
  color:#fff;
  font-weight:800;
  font-size: clamp(18px, 2.4vw, 22px);
  max-width: 980px;
  margin: 0 auto 30px;              /* ✅ más separada del form */
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 22px;
  align-items:start;
  padding: 0 10px;
}

.contact-cards{
  display:grid;
  gap: 14px;
  align-self: center;
  transform: translateY(8px);
}

.contact-card{
  display:flex;
  gap: 14px;
  align-items:center;
  text-decoration:none;

  padding: 16px;
  border-radius: 18px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);

  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.contact-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.26);
}

.contact-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

/* SVG icons */
.icon-svg{
  width: 22px;
  height: 22px;
  color: #fff;
}

/* ✅ LinkedIn icon más grande aún (específico aquí) */
.contact-card .btn-icon{
  width: 24px;
  height: 24px;
}

.contact-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
  color: rgba(255,255,255,.60);
  margin-bottom: 4px;
}
.contact-value{
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

/* Form */
.contact-form{
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
}

.contact-form label{
  display:block;
  margin-bottom: 14px;
}

.contact-form span{
  display:block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(196,181,253,.55);
}

.contact-form .btn{
  display: flex;
  justify-content: center;
  width: max-content;
  margin: 16px auto 0;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-note{
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

/* Footer dentro de Contact */
.contact-footer{
  text-align:center;
  color: rgba(255,255,255,.55);
  margin-top: 18px;
  padding-bottom: 4px; /* ✅ muy poquito margen al final */
}

/* =========================================================
   ANIMACIÓN DE SECCIONES (fade-in)
   ========================================================= */
.js .section{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .section.visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
    transform: none;
  }
}

/* FIX: cards-grid en móvil (evita las “columnas palillo”) */
@media (max-width: 819px){
  .cards-grid{ grid-template-columns: 1fr; }
  .cards-grid > .card{ grid-column: 1 / -1; }
}

@media (max-width: 768px){
  .nav{ padding: 10px 12px; }
  .nav nav{ gap: 10px; font-size: 14px; }
  .section{ padding: 64px 16px; }

  .carousel{
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }
  .carousel-stage{ min-height: 420px; }

  .brand img{ height: 36px; }
}

@media (min-width: 820px){
  .card.col-4{ grid-column: span 4; }
  .card.col-6{ grid-column: span 6; }
}

/* ===== Chips con color por tecnología ===== */
.chip, .project-card .tech span{
  --chip-bg: rgba(255,255,255,.05);
  --chip-bd: rgba(255,255,255,.10);
  --chip-fg: rgba(255,255,255,.92);
  background: var(--chip-bg);
  border: 1px solid var(--chip-bd);
  color: var(--chip-fg);
}

/* tonos */
.t-salesforce{ --chip-bg: rgba(0,161,224,.16); --chip-bd: rgba(0,161,224,.32); }
.t-powerapps{ --chip-bg: rgba(196,181,253,.16); --chip-bd: rgba(196,181,253,.34); }
.t-data{ --chip-bg: rgba(52,211,153,.14); --chip-bd: rgba(52,211,153,.30); }
.t-excel{ --chip-bg: rgba(34,197,94,.14); --chip-bd: rgba(34,197,94,.32); }
.t-dotnet{ --chip-bg: rgba(167,139,250,.15); --chip-bd: rgba(167,139,250,.34); }
.t-kotlin{ --chip-bg: rgba(244,114,182,.14); --chip-bd: rgba(244,114,182,.30); }
.t-python{ --chip-bg: rgba(250,204,21,.12); --chip-bd: rgba(250,204,21,.28); }
.t-js{ --chip-bg: rgba(250,204,21,.12); --chip-bd: rgba(250,204,21,.28); }
.t-java{ --chip-bg: rgba(251,146,60,.14); --chip-bd: rgba(251,146,60,.30); }
.t-vb{ --chip-bg: rgba(148,163,184,.14); --chip-bd: rgba(148,163,184,.30); }
.t-html{ --chip-bg: rgba(249,115,22,.14); --chip-bd: rgba(249,115,22,.30); }
.t-css{ --chip-bg: rgba(59,130,246,.14); --chip-bd: rgba(59,130,246,.30); }
.t-wp{ --chip-bg: rgba(56,189,248,.14); --chip-bd: rgba(56,189,248,.30); }
.t-git{ --chip-bg: rgba(249,115,22,.12); --chip-bd: rgba(249,115,22,.26); }
.t-github{ --chip-bg: rgba(148,163,184,.12); --chip-bd: rgba(148,163,184,.26); }

/* soft skills */
.t-soft-comm{ --chip-bg: rgba(34,211,238,.12); --chip-bd: rgba(34,211,238,.26); }
.t-soft-cur{ --chip-bg: rgba(196,181,253,.12); --chip-bd: rgba(196,181,253,.28); }
.t-soft-adapt{ --chip-bg: rgba(52,211,153,.12); --chip-bd: rgba(52,211,153,.26); }
.t-soft-org{ --chip-bg: rgba(251,191,36,.12); --chip-bd: rgba(251,191,36,.26); }


/* ===== Kotlin Labs: mini-casos ===== */
/* ===== Kotlin Labs: mini-casos ===== */
.mini-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 14px 0 8px;
}

.mini-card{
  border-radius: 16px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

.mini-title{
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.mini-row{
  color: rgba(255,255,255,.80);
  font-size: 14px;
  line-height: 1.45;
  margin: 6px 0;
}

.mini-k{
  font-weight: 900;
  color: rgba(196,181,253,.95);
}

.mini-link{
  display:inline-flex;
  margin-top: 10px;
  font-weight: 900;
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: #fff;
}

.mini-link:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.25);
}

.project-psr{
  margin-top: 12px;
  display:grid;
  gap: 8px;
  color: rgba(255,255,255,.82);
  font-size: 0.95rem;
}
.project-psr strong{ color: #fff; }


/* ===== Paletas thumbs nuevas ===== */
.project-thumb.thumb-realtime{ --a: rgba(34,211,238,.20);  --b: rgba(196,181,253,.16); }
.project-thumb.thumb-testing{  --a: rgba(250,204,21,.14);  --b: rgba(148,163,184,.18); }
.project-thumb.thumb-labs{     --a: rgba(250,204,21,.14);  --b: rgba(196,181,253,.18); }