: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;
    
     --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,” */
    --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 strong{color:#b8c0ca; font-weight:800;}
  .brand b{color:#0a0d14;}

  .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: 48px 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(--muted);}
  .title .rest{color:var(--ink); display:block;}

  .cta{
    display:flex; flex-wrap:wrap; gap:16px;
    margin-top:22px;
  }
  .btn-primary{
    background:var(--btn); 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:15px;
    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}
  }
  
    .footer2{
    background:var(--footer2-bg);
    color:var(--footer2-text);
    padding:80px 20px 40px;
  }

  .footer2-container{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:flex-start;
    gap:40px;
  }

  .footer2-left h2{
    font-size:clamp(16px,1.5vw,18px);
    font-weight:700;
    color:var(--footer2-light);
    margin-bottom:30px;
  }

  /* Email input */
  .footer2-form{
    position:relative;
    margin-bottom:60px;
  }
  .footer2-input{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:1px solid var(--footer2-line);
    padding:10px 40px 10px 0;
    font-size:16px;
    color:var(--footer2-white);
    outline:none;
  }
  .footer2-input::placeholder{color:var(--footer2-muted);}
  .footer2-arrow{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    color:var(--footer2-light);
  }
  .footer2-arrow svg{width:18px;height:18px;stroke-width:2;}

  /* Brand section */
  .footer2-brand{
    display:inline-block;
    font-weight:800;
    font-size:clamp(32px,4vw,48px);
    margin-bottom:14px;
  }
  .footer2-brand strong{color:#bfc4cb;}
  .footer2-brand b{color:#fff;}

  .footer2-desc{
    color:var(--footer2-light);
    font-size:16px;
    line-height:1.6;
    margin-bottom:40px;
  }

  /* Social icons */
  .footer2-social{
    display:flex;
    gap:16px;
    margin-bottom:60px;
  }
  .footer2-social a{
    width:42px; height:42px;
    border-radius:50%;
    display:grid; place-items:center;
    background:#161b27;
    color:var(--footer2-white);
    text-decoration:none;
    transition:transform .15s ease, background .15s ease;
  }
  .footer2-social a:hover{ transform:translateY(-2px); background:#222835; }

  /* Bottom text */
  .footer2-bottom{
    font-size:14px;
    color:var(--footer2-muted);
    border-top:1px solid var(--footer2-line);
    padding-top:30px;
    text-align:center;
  }
  .footer2-bottom a{
    color:var(--footer2-light);
    text-decoration:none;
    font-weight:700;
  }

  @media(max-width:768px){
    .footer2-container{grid-template-columns:1fr; text-align:center;}
    .footer2-form{max-width:380px; margin:0 auto 60px;}
    .footer2-social{justify-content:center;}
  }
  
    .contact2-wrap{
    max-width: 720px;    /* columna angosta como el diseño */
    margin: 40px auto 96px;
    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: var(--c2-muted);}
  .contact2-sub{
    margin-bottom: 40px;
    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{
    border-color:#c9ced8;
    background:#f6f8fb;
  }

  /* 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: 0 0 70px;
    line-height:.92;
    letter-spacing:-.02em;
    font-weight:800;
    font-size: clamp(42px, 7.2vw, 96px);
  }
  .about2-title .soft{ color:var(--about2-muted); }
  .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: #e9eef3;
  border: none;
  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: #d7e3ef;
}

/* 🔹 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;
  }
}