:root{
    --c2-ink:#0b0f19;
    --c2-muted:#b9c0c8;
    --c2-soft:#a3a9b2;
    --c2-line:#e2e6ec;
    --c2-line-strong:#d6dbe3;
    --c2-btn:#0a0d14;
    --c2-btnText:#fff;
    --c2-bg:#fff;
    
    --ubk-bg:#0f1115;
    --ubk-card:#161922;
    --ubk-text:#e8eefc;
    --ubk-muted:#97a0b3;
    --ubk-accent:#2ee6a6;
    --ubk-accent-2:#d6ff5f;
    --ubk-radius:18px;
    --ubk-shadow:0 10px 30px rgba(0,0,0,.35);
    
     --about2-ink:#0b0f19;
    --about2-muted:#c3c9d1;     /* gris del “About me,” */
    --about2-body:#3c4653;      /* párrafo */
    --about2-line:#e7ebf1;
    --about2-btn:#0a0d14;
    --about2-white:#fff;
    
    --bg: #ffffff;
    --ink: #0b0f19;
    --ink-weak:#121722;
    --muted:#c7ced6;          /* gris del “showcasy,” */
    --primary: #6056f1;
    --ring:#e6e9ee;           /* bordes suaves */
    --card:#f6f7fb;           /* fondo de tarjeta */
    --btn:#0a0d14;            /* botón negro */
    --btnTxt:#ffffff;
    --btnAlt:#0a0d14;         /* borde de botón secundario */
    --shadow: 0 10px 30px rgba(10,13,20,.07);
    --radius-xl: 24px;
    --radius-lg: 18px;
    
    --footer2-bg:#0b0f19;
    --footer2-text:#a1a6ad;
    --footer2-light:#bfc3ca;
    --footer2-heading:#d5dae1;
    --footer2-line:#2a2f3a;
    --footer2-muted:#90959f;
    --footer2-white:#fff;
  }

  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color:var(--ink);
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }

  /* Layout container */
  .wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 64px;
  }

  /* Navbar */
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }
  .brand{
    display:inline-flex;
    align-items:center;
    font-weight:800;
    letter-spacing:.2px;
    font-size: clamp(18px, 1.2vw, 22px);
  }
  .brand img{width:125px;}

  .nav-actions{
    display:flex; align-items:center; gap:14px;
  }
  .pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid var(--ring);
    background:#fff;
    font-weight:700;
    font-size:14px;
    color:var(--ink-weak);
    text-decoration:none;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
  }
  .pill:hover{ transform:translateY(-1px); box-shadow: var(--shadow); }

  .menu-btn{
    width:44px; height:44px; border-radius:999px; border:1px solid var(--ring);
    display:grid; place-items:center; background:#fff;
  }
  .menu-btn svg{width:18px; height:18px}

  /* Hero */
  .hero{
    padding: 65px 0 56px;
  }
  .title{
    line-height:.95;
    letter-spacing:-.8px;
    font-weight:800;
    font-size: clamp(42px, 7.5vw, 96px);
    margin: 20px 0 45px;
  }
  .title .lead{color:var(--primary);}
  .title .rest{color:var(--ink); display:block;}

  .cta{
    display:flex; flex-wrap:wrap; gap:16px;
    margin-top:22px;
  }
  .btn-primary{
    background:#6056f1; color:var(--btnTxt);
    border:none;
    padding:18px 28px;
    border-radius:999px;
    font-weight:800; letter-spacing:.2px;
    font-size:16px;
    text-decoration:none;
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    box-shadow: var(--shadow);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  }
  .btn-primary:hover{ transform:translateY(-1px); box-shadow: 0 16px 40px rgba(10,13,20,.14); }
  .btn-ghost{
    background:#fff; color:var(--ink); border:1.5px solid var(--ring);
    padding:18px 28px; border-radius:999px; font-weight:800; font-size:16px;
    text-decoration:none; display:inline-flex; align-items:center; gap:12px;
    transition:transform .15s ease, box-shadow .15s ease;
  }
  .btn-ghost:hover{ transform:translateY(-1px); box-shadow: var(--shadow); }

  /* Figma banner card */
  .figma-card{
    margin-top: 70px;
    margin-bottom: -30px;
    background:var(--card);
    border:1px solid var(--ring);
    border-radius: var(--radius-xl);
    padding: 28px;
    display:flex; align-items:center; justify-content:space-between;
    gap:24px;
    box-shadow: 0 2px 0 rgba(0,0,0,.02);
  }
  .figma-left{
    display:flex; align-items:center; gap:20px;
  }
  .figma-logo{
    width:54px; height:54px; border-radius:25px; display:grid; place-items:center; background:#fff; border:1px solid var(--ring);
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
  }
  .figma-copy h3{
    margin:0 0 6px;
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing:-.2px;
  }
  .figma-copy p{
    margin:0; color:#374151; opacity:.9; font-weight:500; font-size:14px;
  }
  .figma-cta{
    display:inline-flex; align-items:center; gap:12px;
    background:#fff; border:1.5px solid var(--ring);
    padding:14px 20px; border-radius:999px; text-decoration:none; color:var(--ink); font-weight:800;
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .figma-cta:hover{ transform:translateY(-1px); box-shadow: var(--shadow); }

  /* Utilities */
  .arrow{
    display:inline-block; line-height:0;
  }
  .arrow svg{width:16px; height:16px}

  /* Responsive tweaks */
  @media (max-width: 900px){
    .figma-card{flex-direction:column; align-items:stretch}
    .figma-left{justify-content:flex-start}
  }
  @media (max-width:600px){
    .wrap{padding:24px 16px 56px}
    .title{letter-spacing:-.5px}
  }
  


    .contact2-wrap{
    max-width: 720px;    /* columna angosta como el diseño */
    margin: 40px auto 125px;
    padding: 0 20px;
  }

  /* Heading */
  .contact2-title{
    margin: 10px 0 18px;
    line-height:.96;
    letter-spacing:-.02em;
    font-weight:800;
    font-size: clamp(38px, 6.8vw, 74px);
  }
  .contact2-title .hi{ color: #6359f1;}
  .contact2-sub{
    margin-bottom: 70px;
    color:#6b7280;
    font-weight:600;
    text-align:center;
    font-size:14px;
  }

  /* Form base */
  .contact2-form{ width:100%; }
  .contact2-field{
    margin: 22px 0 26px;
  }
  .contact2-label{
    display:block;
    font-size:12px;
    font-weight:700;
    color:#707784;
    margin-bottom:10px;
  }
  .contact2-input,
  .contact2-textarea{
    width:100%;
    border:none;
    outline:0;
    background:transparent;
    padding: 10px 2px 12px;
    border-bottom:1px solid var(--c2-line);
    color:var(--c2-ink);
    font-size:14px;
  }
  .contact2-input::placeholder,
  .contact2-textarea::placeholder{
    color:#98a1ab;
  }
  .contact2-input:focus,
  .contact2-textarea:focus{
    border-bottom-color: var(--c2-line-strong);
  }
  .contact2-textarea{
    height:140px;
    resize:vertical;
  }

  /* Chips (checkbox/radio estilados) */
  .contact2-chips{ display:flex; flex-wrap:wrap; gap:10px; }
  .contact2-chip{
    position:relative;
    display:inline-flex; align-items:center; justify-content:center;
    padding:8px 14px;
    border-radius:999px;
    border:1px solid #d8dde6;
    background:#fff;
    color:#2b313b;
    font-size:12px; font-weight:700;
    cursor:pointer;
    user-select:none;
  }
  .contact2-chip:hover{ border-color:#cfd5df; }
  .contact2-chip input{
    position:absolute; inset:0; opacity:0; pointer-events:none;
  }
  /* Estado activo */
  .contact2-chip[data-type="check"].is-active,
  .contact2-chip[data-type="radio"].is-active{
    color:white;
    background:#6359f1;
  }

  /* Submit */
  .contact2-submit{
    margin-top: 26px;
    display:flex; justify-content:flex-end;
  }
  .contact2-btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:16px 26px;
    border-radius:999px;
    background:var(--c2-btn);
    color:var(--c2-btnText);
    font-weight:800; font-size:14px;
    border:none; cursor:pointer;
    box-shadow: 0 16px 36px rgba(10,13,20,.15);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .contact2-btn:hover{ transform:translateY(-2px); box-shadow:0 22px 60px rgba(10,13,20,.22); }

  /* Center headings vs form */
  .contact2-head{
    text-align:center;
        padding-top: 70px;
    margin-bottom: 16px;
  }

  @media(max-width:560px){
    .contact2-submit{ justify-content:center; }
  }
  
  .about2-wrap{
    max-width:1200px;
    margin: 56px auto 96px;
  }

  /* Heading gigante */
  .about2-title{
    margin: 95px 0 -40px;
    line-height:.92;
    letter-spacing:-.02em;
    text-align:center;
    font-weight:800;
    font-size: clamp(42px, 7.2vw, 96px);
  }
  .about2-title .soft{ color:var(--primary); }
  .about2-title .hard{ color:var(--about2-ink); }

  /* Grid: foto izquierda, texto + botón derecha */
  .about2-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    margin-bottom:45px;
    align-items:center;
  }

   .about2-photo{
    min-width:450px;        /* bloquea el mínimo */
    max-width:100%;
    aspect-ratio: 16/9;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #e7ebf1;
  }
  
   .about2-section{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    gap:60px;
    margin-bottom:100px;
  }
  
  .about2-section.reverse{
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* invierte solo la dirección visual */
  }
  .about2-section.reverse .about2-copy{
    direction: ltr; /* mantiene texto normal */
  }
  
   .about2-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }

  .about2-copy{
    font-family:Manrope,system-ui;
    color:#2f3542;
    font-size:16px;
    line-height:1.7;
  }

 .about2-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#0a0d14;
    color:#fff;
    font-weight:800;
    padding:14px 24px;
    border-radius:999px;
    text-decoration:none;
    box-shadow:0 16px 40px rgba(10,13,20,.15);
    margin-top:24px;
  }
  
  .about2-cta{
    margin-top:32px;
    display:inline-flex; align-items:center; gap:12px;
    background:var(--about2-btn);
    color:var(--about2-white);
    font-weight:800;
    padding:18px 26px;
    border-radius:999px;
    text-decoration:none;
    box-shadow: 0 16px 40px rgba(10,13,20,.15);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .about2-cta:hover{ transform:translateY(-2px); box-shadow:0 22px 60px rgba(10,13,20,.22); }
  .about2-cta svg{ width:18px; height:18px; stroke-width:2; }

  @media (max-width: 900px){
    .about2-grid{ grid-template-columns: 1fr; gap:28px; }
    .about2-copy{ font-size:16px; }
    .about2-section,
    .about2-section.reverse{
      grid-template-columns:1fr;
      direction:ltr;
    }
    .about2-photo{min-width:100%;}
  }
  
  
  .servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-card {
  background: #eef3f7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.servicio-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.servicio-card p {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 16px;
}

.servicio-card .btn {
  background: #6056f1;
  border: none;
  color:white;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.servicio-card .btn:hover {
  background: #000;
}

/* 🔹 Imágenes: ancho 100% y alto fijo proporcional */
.servicio-card img {
  width: 100%;
  height: 180px; /* ajustá este valor según la proporción deseada */
  object-fit: cover;
  margin-top: auto;
  border-radius: 8px;
}

/* 🔹 Responsive */
@media (max-width: 600px) {
  .servicio-card img {
    height: 160px;
  }
}

.tech-section-ubk{
  position: relative;
  background: #6056f1;
  border-radius: 25px;
      margin-top: 100px;
  padding: 40px 30px;
  color:#fff;
  overflow: hidden; /* para que el overlay respete el borde redondeado */
}

.tech-section-ubk::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  /* Rayas blancas súper suaves */
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.2) 0 5px,
    rgba(255,255,255,0.05) 5px 65px
  );

  mix-blend-mode: soft-light; /* o 'overlay' si querés más punch */
  opacity: .9; /* bajá a .6, .5… si sigue fuerte */
}

.tech-title-ubk {
    font-size: clamp(42px, 7.2vw, 96px);
    font-weight: 700;
    text-align:center;
    margin-bottom: 50px;
    margin-top: 10px;
}

.tech-grid-ubk {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-card-ubk {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tech-card-ubk:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.tech-icon-ubk {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 6px;
}

.tech-card-ubk span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}










.ubk-wrap {
  margin: auto;
}

.ubk-card {
  background:#000;
  border-radius: var(--ubk-radius);
  color: var(--ubk-text);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Contenido de texto */
.ubk-card-content {
  flex: 1.4; /* más grande que la imagen */
  padding: 48px clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Imagen al lado derecho */
.ubk-card-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ubk-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.ubk-quote {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  margin: 0 0 24px 0;
}
.ubk-quote .ubk-hi,
.ubk-quote .ubk-hi-2 {
  color: var(--primary);
}

.ubk-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ubk-muted);
  font-size: 15px;
}

.ubk-link {
  color: var(--ubk-text);
  opacity: .8;
  text-decoration: none;
}
.ubk-link:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ====== Consola / Typewriter ====== */
.ubk-terminal {
  margin-top: 28px;
  background: #0f121a;
  border: 1px solid #1e2230;
  border-radius: 12px;
  padding: 16px 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.35;
  color: #e6f0ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.ubk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}
.ubk-prompt { color: #6bdfff; }
.ubk-text { display: inline-block; min-height: 1em; }
.ubk-cursor {
  display: inline-block;
  width: auto;
  margin-left: 1px;
  color: #b9c6e1;
  animation: ubk-blink .9s steps(1,end) infinite;
}
@keyframes ubk-blink {
  0%,49%   { opacity:1; }
  50%,100% { opacity:.15; }
}

/* ====== Responsivo ====== */
@media (max-width: 860px) {
  .ubk-card {
    flex-direction: column;
  }
  .ubk-card-image {
    order: -1;
    height: 220px;
  }
  .ubk-card-content {
    padding: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ubk-cursor { animation: none; }
}




  
  
  .footer {
  background: #fff;
  color: #000;
  padding: 40px 10%;
  font-family: "Manrope", sans-serif;
  border-top: 1px solid #ddd;
}

.footer-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer-social a {
  color: #000;
  font-size: 18px;
  margin-right: 15px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
  transition: opacity 0.3s;
}

.footer-column a:hover {
  opacity: 0.6;
}

.subscribe-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.subscribe-form input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-size: 14px;
  color: #000;
}

.subscribe-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.footer-logo h2 {
  font-size: 32px;
  font-weight: 800;
}

.footer-logo span {
  font-weight: 400;
}

.footer-bottom p {
  font-size: 13px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo {
    margin-bottom: 10px;
  }
}


/* ——— Scope: SOLO afecta a lo que está dentro de .af-portfolio ——— */
.af-portfolio{ --af-bg:#f6f0e9; --af-text:#1b1b1b; --af-muted:#6b6b6b; --af-chip:#ffffff; --af-chip-b:#e7dfd6; --af-btn:#121212; }
.af-portfolio{ background:#eef1f5; color:var(--af-text); border-radius: 25px;    margin-top: 100px; }
.af-portfolio *{ box-sizing:border-box; }

.af-wrap{ max-width:1080px; margin:0 auto; padding:60px 25px 80px; }

/* Mobile-first (apilado) */
.af-grid{ display:block; }
.af-profile{ margin-bottom:28px; }
.af-avatar{ width:116px; height:116px; border-radius:24px; object-fit:cover; display:block; box-shadow:0 8px 22px rgba(0,0,0,.08); }
.af-title{ font-size:34px; line-height:1.1; margin:40px 0 15px; font-weight:800; }
.af-sub{ margin:8px 0 20px; color:var(--af-muted); }

.af-hero-title{ font-size:28px; line-height:1; margin:2px 0 25px; font-weight:700; }
.af-cta{ display:flex; gap:12px; margin:8px 0 24px; }
.af-btn{ appearance:none; border:0; border-radius:999px; padding:15px 20px; font-weight:600; cursor:pointer; font-size:14px; }
.af-btn--primary{ background:#6056f1; color:#fff; }
.af-btn--ghost{ background:#fff;}

.af-divider{ height:1px; background:var(--af-chip-b); margin:18px 0 16px; }
.af-sec-title{ font-weight:700; font-size:16px; color:#2b2b2b; margin-bottom:12px; margin-top: 35px;}

/* Tarjetas */
.af-jobs{ display:grid; gap:12px; }
.af-job{ display:flex; align-items:center; gap:14px; background:var(--af-chip); border-radius:999px; padding:14px 16px; box-shadow:0 6px 14px rgba(0,0,0,.03); }
.af-job__icon{ width:34px; height:34px; border-radius:999px; display:grid; place-items:center; background:#eef1f5; font-weight:700; font-size:13px;color: #6056f1; }
.af-job__meta{ display:flex; flex-direction:column; }
.af-job__role{ font-weight:700; font-size:14px; }
.af-job__company{ font-weight:700; font-size:14px; }
.af-job__dates{ margin-left:auto; color:var(--af-muted); font-size:12px; }

/* Desktop */
@media (min-width:880px){
  .af-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:48px; align-items:start; }
  .af-profile{ position:sticky; top:24px; }
  .af-title{ font-size:50px; }
  .af-hero-title{ font-size:40px; }
  
}

@media only screen and (max-width: 767px) {
  .hero {
        padding: 65px 0 0px;
    }
}

