  :root{
    /* Colores fáciles de ajustar */
    --bg: #ffffff;                /* fondo página (oscuro como en la referencia) */
    --text: #000000;              /* texto principal */
    --muted: #9aa4a9;             /* texto secundario */
    --tile-bg: #f4f8ff;           /* fondo tarjeta */
    --tile-hover: #ffffff;        /* hover tarjeta */
    --accent: #e37bf5;            /* acento verde/menta de la referencia */
    /* Paleta institucional (por si quieres usar gradientes) */
    --grad-a: #93278f;
    --grad-b: #9a529a;
    --grad-c: #00a1de;
  }

  .transp-wrap{
    background: var(--bg);
    color: white;
  }

  .transp-hero{
    padding: 56px 20px 24px;
    background: linear-gradient(135deg, var(--grad-a), var(--grad-b) 40%, var(--grad-c));
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .transp-hero .container{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .transp-hero h1{
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: .3px;
  }
  .transp-hero p{
    margin: 0;
    opacity: .95;
  }

  .transp-grid{
    max-width: 1200px;
    margin: 24px auto 8px;
    padding: 0 20px 8px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
  }
  /* Tarjetas */
  .tile{
    grid-column: span 12;
    display: block;
    position: relative;
    padding: 22px 22px 22px 84px; /* espacio para ícono */
    background: var(--tile-bg);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    overflow: hidden;
  }
  .tile:hover{
    background: var(--tile-hover);
    transform: translateY(-2px);
    border-color: rgba(230, 19, 212, 0.842);
  }
  .tile:focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }
  .tile-title{
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: .3px;
  }
  .tile-sub{
    margin-top: 6px;
    color: var(--muted);
    font-size: .95rem;
  }
  .tile .ico{
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(123,245,197,.18), rgba(123,245,197,.05));
    border: 1px solid rgba(60, 137, 224, 0.405);
    display: grid;
    place-items: center;
  }
  .tile .ico svg{
    width: 22px;
    height: 22px;
    fill: var(--accent);
  }

  /* Distribución responsive (ajusta como gustes) */
  @media (min-width: 640px){
    .tile{ grid-column: span 6; }
  }
  @media (min-width: 1024px){
    .tile{ grid-column: span 4; }
    /* si quieres dos filas de 3 como en la referencia, esto ya lo hace */
  }

  /* Bloque de texto legal/explicativo */
  .transp-note{
    max-width: 1200px;
    margin: 8px auto 0;
    padding: 10px 20px 26px;
    color: var(--muted);
    line-height: 1.6;
    font-size: .98rem;
    border-top: 1px dashed rgba(255,255,255,.08);
    text-align: justify;
  }

  /* Logos/enlaces inferiores */
  .transp-links{
    max-width: 1200px;
    margin: 8px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
  }
  .link-card{
    grid-column: span 12;
    background: var(--tile-bg);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
  }
  .link-card:hover{
    transform: translateY(-2px);
    border-color: rgba(230, 19, 212, 0.842);
    background: var(--tile-hover);
  }
  .link-card img{
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 12px;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
  }
  .link-title{
    font-weight: 700;
  }
  @media (min-width: 640px){
    .link-card{ grid-column: span 4; }
  }
