# Adela Barreto

Adela Barreto, empresaria y consultora estratégica. Dirige finanzas y operaciones en Density Labs y conduce el podcast Mujeres haciendo cosas.

<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <meta name="color-scheme" content="light dark" />
  <meta name="theme-color" id="ab-theme-color" content="#FAFAF8" />

  
    /adela/ is the link page behind the QR code on Adela's business card.
    Standalone on purpose (layout: none): no site nav, no site footer. A phone
    scans the card and lands on her, not on the company site with a card in the
    middle of it. Everything else is the shared design system: brand.css tokens
    and self hosted fonts, scoped under .ab-*.
  

  <script>
    /* Resolve the stored theme before the page paints, so there is no flash. */
    (function () {
      try {
        var t = localStorage.getItem('theme');
        if (t === 'dark' || t === 'light') {
          document.documentElement.setAttribute('data-theme', t);
        }
      } catch (e) {}
    })();
  </script>

  <link rel="stylesheet" href="?v=">
  <link rel="icon" type="image/png" href="">
  <link rel="apple-touch-icon" href="">

  

  <style>
  /* ============================================================
     ADELA BARRETO, link in bio (/adela/)
     Scoped with the .ab- prefix. Colours, fonts and spacing come
     from the Density Labs tokens in brand.css. No new palette.

     Theme structure, in this order:
       1. :root                                  complete LIGHT palette
       2. @media dark, guarded :not([data-theme="light"])  tokens only
       3. :root[data-theme="dark"]                         tokens only
     so the button wins over the system in both directions and no
     colour lives only inside a media query or a [data-theme] block.
     ============================================================ */
  :root {
    --ab-bg: var(--paper);
    --ab-surface: var(--white);
    --ab-hover: rgba(153, 27, 27, 0.05);
    --ab-save-ring: rgba(153,27,27,.14);
    --ab-save-glow: rgba(153,27,27,.30);
    --ab-border: var(--line);
    --ab-border-strong: var(--line-strong);
    --ab-text: var(--ink);
    --ab-sub: var(--ink-muted);
    --ab-faint: var(--ink-faint);
    --ab-accent: var(--red);
    --ab-accent-on: var(--paper);
    --ab-ring: rgba(15, 23, 42, 0.16);
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ab-bg: var(--black);
      --ab-surface: var(--black-soft);
      --ab-hover: rgba(229, 72, 77, 0.12);
      --ab-save-ring: rgba(153,27,27,.14);
    --ab-save-glow: rgba(153,27,27,.30);
    --ab-border: rgba(250, 250, 248, 0.12);
      --ab-border-strong: rgba(250, 250, 248, 0.2);
      --ab-text: var(--text-on-dark);
      --ab-sub: var(--text-on-dark-soft);
      --ab-faint: var(--text-on-dark-muted);
      --ab-accent: var(--red-bright);
      --ab-accent-on: var(--black);
      --ab-ring: rgba(0, 0, 0, 0.5);
    }
  }

  :root[data-theme="dark"] {
    --ab-bg: var(--black);
    --ab-surface: var(--black-soft);
    --ab-hover: rgba(229, 72, 77, 0.12);
    --ab-save-ring: rgba(153,27,27,.14);
    --ab-save-glow: rgba(153,27,27,.30);
    --ab-border: rgba(250, 250, 248, 0.12);
    --ab-border-strong: rgba(250, 250, 248, 0.2);
    --ab-text: var(--text-on-dark);
    --ab-sub: var(--text-on-dark-soft);
    --ab-faint: var(--text-on-dark-muted);
    --ab-accent: var(--red-bright);
    --ab-accent-on: var(--black);
    --ab-ring: rgba(0, 0, 0, 0.5);
  }

  /* The page owns the whole document now: both html and body paint from the
     token, so overscroll and any short viewport stay in theme. */
  html { background: var(--ab-bg); }
  body {
    background: var(--ab-bg);
    color: var(--ab-text);
    min-height: 100vh;
  }

  .ab-page {
    background: var(--ab-bg);
    color: var(--ab-text);
    padding: 56px 20px 72px;
    min-height: 100vh;
  }

  .ab-inner {
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
  }

  /* ---- Identity ---- */
  .ab-avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 22px;
    box-shadow: 0 14px 34px -14px var(--ab-ring), 0 0 0 1px var(--ab-border);
  }
  .ab-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ab-text);
    margin: 0 0 12px;
  }
  .ab-name .ab-accent { color: var(--ab-accent); }
  .ab-tagline {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ab-sub);
    margin: 0 auto;
    max-width: 380px;
  }

  /* ---- Icon rows ---- */
  .ab-icons {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .ab-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--ab-border);
    border-radius: 50%;
    background: var(--ab-surface);
    color: var(--ab-text);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .ab-icons a:hover {
    color: var(--ab-accent);
    border-color: var(--ab-accent);
    background: var(--ab-hover);
  }
  .ab-icons svg { width: 19px; height: 19px; display: block; }

  .ab-icons-sm { margin-top: 12px; gap: 10px; }
  .ab-icons-sm a { width: 38px; height: 38px; }
  .ab-icons-sm svg { width: 16px; height: 16px; }

  /* ---- Groups ---- */
  .ab-group {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ab-sub);
    margin: 44px 0 14px;
  }
  .ab-group svg { width: 13px; height: 13px; color: var(--ab-accent); flex-shrink: 0; }

  .ab-links { list-style: none; margin: 0; padding: 0; }
  .ab-links li { margin-bottom: 10px; }
  .ab-links li:last-child { margin-bottom: 0; }

  .ab-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: 8px;
    text-align: left;
    text-decoration: none;
    color: var(--ab-text);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
  }
  .ab-row:hover {
    color: var(--ab-text);
    border-color: var(--ab-accent);
    background: var(--ab-hover);
    transform: translateY(-1px);
  }
  .ab-row-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--ab-border-strong);
    color: var(--ab-accent);
  }
  .ab-row-icon svg { width: 16px; height: 16px; display: block; }
  .ab-row-text { flex: 1; min-width: 0; }
  .ab-row-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    color: var(--ab-text);
    line-height: 1.3;
  }
  .ab-row-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.45;
    color: var(--ab-sub);
    margin-top: 3px;
  }
  .ab-row-chev { flex-shrink: 0; color: var(--ab-faint); display: inline-flex; }
  .ab-row-chev svg { width: 14px; height: 14px; display: block; }
  .ab-row:hover .ab-row-chev { color: var(--ab-accent); }

  /* ---- Toggles ---- */
  .ab-toggles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--ab-border);
  }
  .ab-lang {
    display: inline-flex;
    border: 1px solid var(--ab-border);
    border-radius: 100px;
    overflow: hidden;
    background: var(--ab-surface);
  }
  .ab-lang-btn {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 9px 16px;
    min-height: 36px;
    background: transparent;
    color: var(--ab-sub);
    border: 0;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
  }
  .ab-lang-btn:hover { color: var(--ab-text); }
  .ab-lang-btn[aria-pressed="true"] {
    background: var(--ab-accent);
    color: var(--ab-accent-on);
  }
  .ab-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--ab-border);
    border-radius: 50%;
    background: var(--ab-surface);
    color: var(--ab-sub);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .ab-theme:hover { color: var(--ab-accent); border-color: var(--ab-accent); }
  .ab-theme svg { width: 16px; height: 16px; display: block; }

  /* Show the icon of the theme you switch TO. Same cascade order as the tokens. */
  .ab-theme .ab-i-moon { display: block; }
  .ab-theme .ab-i-sun { display: none; }
  @media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .ab-theme .ab-i-moon { display: none; }
    html:not([data-theme="light"]) .ab-theme .ab-i-sun { display: block; }
  }
  html[data-theme="dark"] .ab-theme .ab-i-moon { display: none; }
  html[data-theme="dark"] .ab-theme .ab-i-sun { display: block; }

  /* ---- Focus + motion ---- */
  .ab-page a:focus-visible,
  .ab-page button:focus-visible {
    outline: 2px solid var(--ab-accent);
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    .ab-page a, .ab-page button { transition: none; }
    .ab-row:hover { transform: none; }
  }

  /* Guardar contacto: same size as its neighbours, but filled and ringed
     so it reads as the one action on the card. Base cascade, never inside
     a media query. */
  .ab-icons a.ab-icon-save {
    background: var(--ab-accent);
    border-color: var(--ab-accent);
    color: #fff;
    box-shadow: 0 0 0 4px var(--ab-save-ring), 0 4px 14px var(--ab-save-glow);
  }
  .ab-icons a.ab-icon-save:hover {
    background: var(--ab-accent);
    border-color: var(--ab-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 0 5px var(--ab-save-ring), 0 8px 20px var(--ab-save-glow);
  }

  @media (max-width: 380px) {
    .ab-page { padding: 44px 16px 64px; }
    .ab-row { padding: 13px 13px; gap: 11px; }
    .ab-icons { gap: 10px; }
  }
  </style>

</head>
<body>

<section class="ab-page" id="ab-page">
  <div class="ab-inner">

    <picture>
      <source type="image/webp"
              srcset=" 1x,  2x">
      <img class="ab-avatar"
           src=""
           srcset=" 1x,  2x"
           width="440" height="440" decoding="async"
           alt="Retrato de Adela Barreto"
           data-es-alt="Retrato de Adela Barreto" data-en-alt="Portrait of Adela Barreto">
    </picture>

    <h1 class="ab-name">Adela <span class="ab-accent">Barreto</span></h1>

    <p class="ab-tagline"
       data-es="Empresaria y consultora estratégica. Dirijo finanzas y operaciones. Podcaster."
       data-en="Entrepreneur and strategy consultant. I lead finance and operations. I host Mujeres haciendo cosas.">Empresaria y consultora estratégica. Dirijo finanzas y operaciones. Podcaster.</p>

    <ul class="ab-icons">
      <li>
        <a href="https://www.instagram.com/adelabarretto/" target="_blank" rel="noopener"
           aria-label="Instagram de Adela Barreto"
           data-es-label="Instagram de Adela Barreto" data-en-label="Adela Barreto on Instagram">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334"/></svg>
        </a>
      </li>
      <li>
        <a href="https://mx.linkedin.com/in/adela-barreto-346bbb8a" target="_blank" rel="noopener"
           aria-label="LinkedIn de Adela Barreto"
           data-es-label="LinkedIn de Adela Barreto" data-en-label="Adela Barreto on LinkedIn">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"/></svg>
        </a>
      </li>
      <li>
        <a href="mailto:adela@densitylabs.io"
           aria-label="Escríbele a Adela Barreto por correo"
           data-es-label="Escríbele a Adela Barreto por correo" data-en-label="Email Adela Barreto">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M.05 3.555A2 2 0 0 1 2 2h12a2 2 0 0 1 1.95 1.555L8 8.414zM0 4.697v7.104l5.803-3.558zM6.761 8.83l-6.57 4.027A2 2 0 0 0 2 14h12a2 2 0 0 0 1.808-1.144l-6.57-4.027L8 9.586zm3.436-.586L16 11.801V4.697z"/></svg>
        </a>
      </li>
      <li>
        <a class="ab-icon-save" href="/adela.vcf" download="adela-barreto.vcf"
           aria-label="Guardar contacto"
           data-es-label="Guardar contacto" data-en-label="Add to contacts">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M1 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6"/><path fill-rule="evenodd" d="M13.5 5a.5.5 0 0 1 .5.5V7h1.5a.5.5 0 0 1 0 1H14v1.5a.5.5 0 0 1-1 0V8h-1.5a.5.5 0 0 1 0-1H13V5.5a.5.5 0 0 1 .5-.5"/></svg>
        </a>
      </li>
    </ul>

    <h2 class="ab-group">
      <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M5 3a3 3 0 0 1 6 0v5a3 3 0 0 1-6 0z"/><path d="M3.5 6.5A.5.5 0 0 1 4 7v1a4 4 0 0 0 8 0V7a.5.5 0 0 1 1 0v1a5 5 0 0 1-4.5 4.975V15h3a.5.5 0 0 1 0 1h-7a.5.5 0 0 1 0-1h3v-2.025A5 5 0 0 1 3 8V7a.5.5 0 0 1 .5-.5"/></svg>
      <span data-es="Podcast" data-en="Podcast">Podcast</span>
    </h2>

    <ul class="ab-links">
      <li>
        <a class="ab-row" href="https://open.spotify.com/show/0SxwT74msD9qIdLhUmw9B0" target="_blank" rel="noopener">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.669 11.538a.5.5 0 0 1-.686.165c-1.879-1.147-4.243-1.407-7.028-.77a.499.499 0 0 1-.222-.973c3.048-.696 5.662-.397 7.77.892a.5.5 0 0 1 .166.686m.979-2.178a.624.624 0 0 1-.858.205c-2.15-1.321-5.428-1.704-7.972-.932a.625.625 0 0 1-.362-1.194c2.905-.881 6.517-.454 8.986 1.063a.624.624 0 0 1 .206.858m.084-2.268C10.154 5.56 5.9 5.419 3.438 6.166a.748.748 0 1 1-.434-1.432c2.825-.857 7.523-.692 10.492 1.07a.747.747 0 1 1-.764 1.288"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Mujeres haciendo cosas" data-en="Mujeres haciendo cosas">Mujeres haciendo cosas</span>
            <span class="ab-row-sub" data-es="Escucha el podcast en Spotify" data-en="Listen to the show on Spotify">Escucha el podcast en Spotify</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
      <li>
        <a class="ab-row" href="https://www.youtube.com/@Mujereshaciendocosas" target="_blank" rel="noopener">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Mira el podcast en YouTube" data-en="Watch the podcast on YouTube">Mira el podcast en YouTube</span>
            <span class="ab-row-sub" data-es="Episodios completos en video" data-en="Full episodes on video">Episodios completos en video</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
      <li>
        <a class="ab-row" href="https://calendly.com/adela-densitylabs/podcast-mujeres-haciendo-cosas" target="_blank" rel="noopener">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0"/> <path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4z"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Ven como invitada" data-en="Come on as a guest">Ven como invitada</span>
            <span class="ab-row-sub" data-es="Agenda tu episodio" data-en="Book your episode">Agenda tu episodio</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
    </ul>

    <ul class="ab-icons ab-icons-sm">
      <li>
        <a href="https://www.youtube.com/@Mujereshaciendocosas" target="_blank" rel="noopener"
           aria-label="Mujeres haciendo cosas en YouTube"
           data-es-label="Mujeres haciendo cosas en YouTube" data-en-label="Mujeres haciendo cosas on YouTube">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8.051 1.999h.089c.822.003 4.987.033 6.11.335a2.01 2.01 0 0 1 1.415 1.42c.101.38.172.883.22 1.402l.01.104.022.26.008.104c.065.914.073 1.77.074 1.957v.075c-.001.194-.01 1.108-.082 2.06l-.008.105-.009.104c-.05.572-.124 1.14-.235 1.558a2.01 2.01 0 0 1-1.415 1.42c-1.16.312-5.569.334-6.18.335h-.142c-.309 0-1.587-.006-2.927-.052l-.17-.006-.087-.004-.171-.007-.171-.007c-1.11-.049-2.167-.128-2.654-.26a2.01 2.01 0 0 1-1.415-1.419c-.111-.417-.185-.986-.235-1.558L.09 9.82l-.008-.104A31 31 0 0 1 0 7.68v-.123c.002-.215.01-.958.064-1.778l.007-.103.003-.052.008-.104.022-.26.01-.104c.048-.519.119-1.023.22-1.402a2.01 2.01 0 0 1 1.415-1.42c.487-.13 1.544-.21 2.654-.26l.17-.007.172-.006.086-.003.171-.007A100 100 0 0 1 7.858 2zM6.4 5.209v4.818l4.157-2.408z"/></svg>
        </a>
      </li>
      <li>
        <a href="https://open.spotify.com/show/0SxwT74msD9qIdLhUmw9B0" target="_blank" rel="noopener"
           aria-label="Mujeres haciendo cosas en Spotify"
           data-es-label="Mujeres haciendo cosas en Spotify" data-en-label="Mujeres haciendo cosas on Spotify">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0m3.669 11.538a.5.5 0 0 1-.686.165c-1.879-1.147-4.243-1.407-7.028-.77a.499.499 0 0 1-.222-.973c3.048-.696 5.662-.397 7.77.892a.5.5 0 0 1 .166.686m.979-2.178a.624.624 0 0 1-.858.205c-2.15-1.321-5.428-1.704-7.972-.932a.625.625 0 0 1-.362-1.194c2.905-.881 6.517-.454 8.986 1.063a.624.624 0 0 1 .206.858m.084-2.268C10.154 5.56 5.9 5.419 3.438 6.166a.748.748 0 1 1-.434-1.432c2.825-.857 7.523-.692 10.492 1.07a.747.747 0 1 1-.764 1.288"/></svg>
        </a>
      </li>
      <li>
        <a href="https://www.instagram.com/mujeres.haciendo.cosas" target="_blank" rel="noopener"
           aria-label="Mujeres haciendo cosas en Instagram"
           data-es-label="Mujeres haciendo cosas en Instagram" data-en-label="Mujeres haciendo cosas on Instagram">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.9 3.9 0 0 0-1.417.923A3.9 3.9 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.9 3.9 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.9 3.9 0 0 0-.923-1.417A3.9 3.9 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599s.453.546.598.92c.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.5 2.5 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.5 2.5 0 0 1-.92-.598 2.5 2.5 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233s.008-2.388.046-3.231c.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92s.546-.453.92-.598c.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92m-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217m0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334"/></svg>
        </a>
      </li>
      <li>
        <a href="https://www.facebook.com/profile.php?id=61587504812732&amp;locale=es_LA" target="_blank" rel="noopener"
           aria-label="Mujeres haciendo cosas en Facebook"
           data-es-label="Mujeres haciendo cosas en Facebook" data-en-label="Mujeres haciendo cosas on Facebook">
          <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951"/></svg>
        </a>
      </li>
    </ul>

        <h2 class="ab-group">
      <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z"/> <path d="M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z"/> <path d="M9.979 5.356a.5.5 0 0 0-.968.04L7.92 10.49l-.94-3.135a.5.5 0 0 0-.926-.08L4.69 10H4.5a.5.5 0 0 0 0 1H5a.5.5 0 0 0 .447-.276l.936-1.873 1.138 3.793a.5.5 0 0 0 .968-.04L9.58 7.51l.94 3.135A.5.5 0 0 0 11 11h.5a.5.5 0 0 0 0-1h-.128z"/></svg>
      <span data-es="Consultoría estratégica" data-en="Strategy consulting">Consultoría estratégica</span>
    </h2>

    <ul class="ab-links">
      <li>
        <a class="ab-row" href="https://cal.com/adela-barreto-2whukx/30min" target="_blank" rel="noopener">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z"/> <path d="M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z"/> <path d="M9.979 5.356a.5.5 0 0 0-.968.04L7.92 10.49l-.94-3.135a.5.5 0 0 0-.926-.08L4.69 10H4.5a.5.5 0 0 0 0 1H5a.5.5 0 0 0 .447-.276l.936-1.873 1.138 3.793a.5.5 0 0 0 .968-.04L9.58 7.51l.94 3.135A.5.5 0 0 0 11 11h.5a.5.5 0 0 0 0-1h-.128z"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Diagnóstico" data-en="Diagnostic session">Diagnóstico</span>
            <span class="ab-row-sub" data-es="30 minutos, agenda directo" data-en="30 minutes, straight into my calendar">30 minutos, agenda directo</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
    </ul>

<h2 class="ab-group">
      <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v1.384l7.614 2.03a1.5 1.5 0 0 0 .772 0L16 5.884V4.5A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5"/><path d="M0 12.5A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V6.85L8.129 8.947a.5.5 0 0 1-.258 0L0 6.85z"/></svg>
      <span data-es="Trabajo" data-en="Work">Trabajo</span>
    </h2>

    <ul class="ab-links">
      <li>
        <a class="ab-row" href="https://densitylabs.io/">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M6.5 1A1.5 1.5 0 0 0 5 2.5V3H1.5A1.5 1.5 0 0 0 0 4.5v1.384l7.614 2.03a1.5 1.5 0 0 0 .772 0L16 5.884V4.5A1.5 1.5 0 0 0 14.5 3H11v-.5A1.5 1.5 0 0 0 9.5 1zm0 1h3a.5.5 0 0 1 .5.5V3H6v-.5a.5.5 0 0 1 .5-.5"/><path d="M0 12.5A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5V6.85L8.129 8.947a.5.5 0 0 1-.258 0L0 6.85z"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Density Labs" data-en="Density Labs">Density Labs</span>
            <span class="ab-row-sub" data-es="Cofundadora. Lidero finanzas y operaciones" data-en="Cofounder. I lead finance and operations">Cofundadora. Lidero finanzas y operaciones</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
      <li>
        <a class="ab-row" href="https://densitylabs.io/ai-readiness-assessment/">
          <span class="ab-row-icon">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M9.5 0a.5.5 0 0 1 .5.5.5.5 0 0 0 .5.5.5.5 0 0 1 .5.5V2a.5.5 0 0 1-.5.5h-5A.5.5 0 0 1 5 2v-.5a.5.5 0 0 1 .5-.5.5.5 0 0 0 .5-.5.5.5 0 0 1 .5-.5z"/><path d="M3 2.5a.5.5 0 0 1 .5-.5H4a.5.5 0 0 0 0-1h-.5A1.5 1.5 0 0 0 2 2.5v12A1.5 1.5 0 0 0 3.5 16h9a1.5 1.5 0 0 0 1.5-1.5v-12A1.5 1.5 0 0 0 12.5 1H12a.5.5 0 0 0 0 1h.5a.5.5 0 0 1 .5.5v12a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5z"/><path d="M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z"/></svg>
          </span>
          <span class="ab-row-text">
            <span class="ab-row-title" data-es="Diagnóstico de madurez en IA" data-en="AI Readiness Assessment">Diagnóstico de madurez en IA</span>
            <span class="ab-row-sub" data-es="Dos semanas para saber qué sí puede salir a producción" data-en="A two-week read on what is actually shippable">Dos semanas para saber qué sí puede salir a producción</span>
          </span>
          <span class="ab-row-chev">
            <svg viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>
          </span>
        </a>
      </li>
    </ul>

    <div class="ab-toggles">
      <div class="ab-lang" role="group" id="ab-lang"
           aria-label="Idioma" data-es-label="Idioma" data-en-label="Language">
        <button type="button" class="ab-lang-btn" data-lang="es" aria-pressed="true"
                aria-label="Ver esta página en español"
                data-es-label="Ver esta página en español" data-en-label="View this page in Spanish">ES</button>
        <button type="button" class="ab-lang-btn" data-lang="en" aria-pressed="false"
                aria-label="Ver esta página en inglés"
                data-es-label="Ver esta página en inglés" data-en-label="View this page in English">EN</button>
      </div>
      <button type="button" class="ab-theme" id="ab-theme" aria-label="Cambiar a tema oscuro"
              data-es-to-dark="Cambiar a tema oscuro" data-en-to-dark="Switch to dark theme"
              data-es-to-light="Cambiar a tema claro" data-en-to-light="Switch to light theme">
        <svg class="ab-i-moon" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M6 .278a.77.77 0 0 1 .08.858 7.2 7.2 0 0 0-.878 3.46c0 4.021 3.278 7.277 7.318 7.277q.792-.001 1.533-.16a.79.79 0 0 1 .81.316.73.73 0 0 1-.031.893A8.35 8.35 0 0 1 8.344 16C3.734 16 0 12.286 0 7.71 0 4.266 2.114 1.312 5.124.06A.75.75 0 0 1 6 .278"/><path d="M10.794 3.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387a1.73 1.73 0 0 0-1.097 1.097l-.387 1.162a.217.217 0 0 1-.412 0l-.387-1.162A1.73 1.73 0 0 0 9.31 6.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387a1.73 1.73 0 0 0 1.097-1.097zM13.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.16 1.16 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.16 1.16 0 0 0-.732-.732l-.774-.258a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732z"/></svg>
        <svg class="ab-i-sun" viewBox="0 0 16 16" fill="currentColor" aria-hidden="true" focusable="false"><path d="M8 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8M8 0a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 0m0 13a.5.5 0 0 1 .5.5v2a.5.5 0 0 1-1 0v-2A.5.5 0 0 1 8 13m8-5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2a.5.5 0 0 1 .5.5M3 8a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1 0-1h2A.5.5 0 0 1 3 8m10.657-5.657a.5.5 0 0 1 0 .707l-1.414 1.415a.5.5 0 1 1-.707-.708l1.414-1.414a.5.5 0 0 1 .707 0m-9.193 9.193a.5.5 0 0 1 0 .707L3.05 13.657a.5.5 0 0 1-.707-.707l1.414-1.414a.5.5 0 0 1 .707 0m9.193 2.121a.5.5 0 0 1-.707 0l-1.414-1.414a.5.5 0 0 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .707M4.464 4.465a.5.5 0 0 1-.707 0L2.343 3.05a.5.5 0 1 1 .707-.707l1.414 1.414a.5.5 0 0 1 0 .708"/></svg>
      </button>
    </div>

  </div>
</section>

<script>
  (function () {
    var root = document.documentElement;
    var page = document.getElementById('ab-page');
    var themeBtn = document.getElementById('ab-theme');
    var themeColor = document.getElementById('ab-theme-color');
    var langBtns = page.querySelectorAll('.ab-lang-btn');
    var mq = window.matchMedia('(prefers-color-scheme: dark)');
    var lang = 'es';

    function resolvedTheme() {
      var set = root.getAttribute('data-theme');
      if (set === 'dark' || set === 'light') return set;
      return mq.matches ? 'dark' : 'light';
    }

    function syncThemeLabel() {
      var now = resolvedTheme();
      var next = now === 'dark' ? 'light' : 'dark';
      themeBtn.setAttribute('aria-label', themeBtn.getAttribute('data-' + lang + '-to-' + next));
      themeColor.setAttribute('content', now === 'dark' ? '#141414' : '#FAFAF8');
    }

    function applyLang(next) {
      lang = next;
      root.setAttribute('lang', next);
      var i, nodes;
      nodes = page.querySelectorAll('[data-' + next + ']');
      for (i = 0; i < nodes.length; i++) {
        nodes[i].textContent = nodes[i].getAttribute('data-' + next);
      }
      nodes = page.querySelectorAll('[data-' + next + '-label]');
      for (i = 0; i < nodes.length; i++) {
        nodes[i].setAttribute('aria-label', nodes[i].getAttribute('data-' + next + '-label'));
      }
      nodes = page.querySelectorAll('[data-' + next + '-alt]');
      for (i = 0; i < nodes.length; i++) {
        nodes[i].setAttribute('alt', nodes[i].getAttribute('data-' + next + '-alt'));
      }
      for (i = 0; i < langBtns.length; i++) {
        langBtns[i].setAttribute('aria-pressed', String(langBtns[i].getAttribute('data-lang') === next));
      }
      syncThemeLabel();
    }

    for (var b = 0; b < langBtns.length; b++) {
      langBtns[b].addEventListener('click', function () {
        var next = this.getAttribute('data-lang');
        try { localStorage.setItem('ab-lang', next); } catch (e) {}
        applyLang(next);
      });
    }

    themeBtn.addEventListener('click', function () {
      var next = resolvedTheme() === 'dark' ? 'light' : 'dark';
      root.setAttribute('data-theme', next);
      try { localStorage.setItem('theme', next); } catch (e) {}
      syncThemeLabel();
    });

    if (mq.addEventListener) { mq.addEventListener('change', syncThemeLabel); }

    /* Spanish is the served default. Only a first visit from a non Spanish
       browser flips to English, and the choice is then remembered. */
    var stored = null;
    try { stored = localStorage.getItem('ab-lang'); } catch (e) {}
    if (stored !== 'es' && stored !== 'en') {
      stored = (navigator.language || 'es').toLowerCase().indexOf('es') === 0 ? 'es' : 'en';
      try { localStorage.setItem('ab-lang', stored); } catch (e) {}
    }
    applyLang(stored);
  })();
</script>

</body>
</html>
