<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Tu Delegado Online | ANPE Murcia</title>
  <meta name="description" content="Acceso directo a los servicios de ANPE Murcia: ventajas de ser afiliado, web principal y consulta con tu delegado." />
  <style>
    :root {
      --anpe-blue: #00a3c7;
      --anpe-blue-dark: #05779a;
      --anpe-green: #008b3e;
      --anpe-green-light: #00b85a;
      --text: #17324d;
      --muted: #5d7083;
      --bg: #f5fbfd;
      --white: #ffffff;
      --shadow: 0 18px 45px rgba(0, 77, 117, 0.14);
      --radius: 24px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 20%, rgba(0, 163, 199, 0.12) 0 15%, transparent 16%),
        radial-gradient(circle at 92% 15%, rgba(0, 139, 62, 0.12) 0 12%, transparent 13%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .page {
      position: relative;
      min-height: 100vh;
      padding: 38px 20px 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page::before,
    .page::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      pointer-events: none;
      opacity: 0.16;
      z-index: 0;
    }

    .page::before {
      width: 560px;
      height: 560px;
      left: -300px;
      top: 250px;
      border: 70px solid var(--anpe-blue);
    }

    .page::after {
      width: 620px;
      height: 620px;
      right: -340px;
      bottom: -270px;
      border: 80px solid var(--anpe-green-light);
    }

    .wrap {
      width: min(1180px, 100%);
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .topbar {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 16px;
      border: 1px solid rgba(0, 163, 199, 0.20);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.75);
      color: var(--anpe-blue-dark);
      font-weight: 700;
      font-size: 15px;
      box-shadow: 0 8px 24px rgba(0, 77, 117, 0.08);
      margin-bottom: 18px;
    }

    .topbar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--anpe-green-light);
      display: inline-block;
    }

    h1 {
      margin: 0;
      font-size: clamp(42px, 7vw, 92px);
      line-height: 0.95;
      letter-spacing: -3px;
      font-weight: 900;
      color: var(--anpe-blue);
      text-transform: uppercase;
    }

    h1 strong {
      color: var(--anpe-green);
      font-weight: 900;
    }

    .subtitle {
      margin: 18px auto 18px;
      max-width: 760px;
      font-size: clamp(19px, 2.5vw, 30px);
      line-height: 1.3;
      color: var(--text);
    }

    .logo-box {
      margin: 18px auto 8px;
      width: 210px;
      max-width: 48vw;
      padding: 8px 18px 0;
    }

    .logo-box img {
      display: block;
      width: 100%;
      height: auto;
    }

    .claim {
      margin: 14px auto 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: var(--anpe-blue-dark);
      font-size: clamp(19px, 2.2vw, 28px);
      font-weight: 800;
    }

    .claim::before,
    .claim::after {
      content: "";
      width: 38px;
      height: 4px;
      border-radius: 999px;
      background: var(--anpe-green-light);
      display: inline-block;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 18px;
    }

    .card {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 285px;
      padding: 34px 24px 28px;
      text-decoration: none;
      color: var(--text);
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 163, 199, 0.12);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .card:hover,
    .card:focus-visible {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 77, 117, 0.20);
      border-color: rgba(0, 163, 199, 0.35);
      outline: none;
    }

    .card::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 11px;
      background: var(--anpe-blue);
    }

    .card.green::after {
      background: var(--anpe-green-light);
    }

    .icon {
      width: 92px;
      height: 92px;
      display: grid;
      place-items: center;
      border: 4px solid var(--anpe-blue);
      border-radius: 50%;
      color: var(--anpe-blue);
      margin-bottom: 18px;
    }

    .green .icon {
      border-color: var(--anpe-green-light);
      color: var(--anpe-green);
    }

    .icon svg {
      width: 52px;
      height: 52px;
      fill: currentColor;
    }

    .card h2 {
      margin: 0 0 12px;
      color: var(--anpe-blue);
      font-size: clamp(24px, 2.2vw, 31px);
      line-height: 1.12;
    }

    .card.green h2 {
      color: var(--anpe-green);
    }

    .line {
      width: 180px;
      max-width: 70%;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
      color: var(--anpe-blue);
      opacity: 0.85;
      margin-bottom: 14px;
      position: relative;
    }

    .line::after {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: currentColor;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    .green .line {
      color: var(--anpe-green-light);
    }

    .url {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.4;
      overflow-wrap: anywhere;
    }

    .cta {
      margin-top: auto;
      padding-top: 18px;
      font-weight: 800;
      color: var(--anpe-blue-dark);
    }

    .green .cta {
      color: var(--anpe-green);
    }

    .footer-values {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px 28px;
      margin: 32px auto 0;
      color: var(--text);
      font-weight: 700;
    }

    .value {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 15px;
    }

    .value svg {
      width: 24px;
      height: 24px;
      fill: var(--anpe-green);
      flex: 0 0 auto;
    }

    @media (max-width: 900px) {
      .page {
        padding-top: 28px;
      }

      h1 {
        letter-spacing: -1px;
      }

      .cards {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
      }

      .card {
        min-height: auto;
      }

      .claim {
        flex-direction: column;
        gap: 8px;
      }

      .claim::before,
      .claim::after {
        width: 56px;
      }
    }

    @media (max-width: 520px) {
      .topbar {
        font-size: 13px;
      }

      .subtitle {
        font-size: 18px;
      }

      .logo-box {
        width: 170px;
      }

      .card {
        padding: 28px 18px 26px;
      }
    }
  </style>
</head>
<body>
  <main class="page">
    <section class="wrap" aria-label="Portada de Tu Delegado Online">
      <div class="topbar"><span></span> ANPE Murcia</div>

      <h1>TUDELEGADO.<strong>ONLINE</strong></h1>
      <p class="subtitle">Acceso directo a los servicios de ANPE Murcia</p>

      <div class="logo-box">
        <img src="logo-anpe-murcia.png" alt="ANPE Murcia - Sindicato Independiente" />
      </div>

      <div class="claim">Todo lo que necesitas, en un solo lugar</div>

      <div class="cards">
        <a class="card" href="https://anpemurcia.es/web/55/Ventajas+del+afiliado" aria-label="Acceder a ventajas de ser afiliado">
          <div class="icon" aria-hidden="true">
            <svg viewBox="0 0 24 24"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3Zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3Zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5C15 14.17 10.33 13 8 13Zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5Z"/></svg>
          </div>
          <h2>Ventajas de ser afiliado</h2>
          <div class="line"></div>
          <p class="url">https://anpemurcia.es/web/55/Ventajas+del+afiliado</p>
          <span class="cta">Ver ventajas</span>
        </a>

        <a class="card" href="https://anpemurcia.es" aria-label="Acceder a la web principal de ANPE Murcia">
          <div class="icon" aria-hidden="true">
            <svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.93 6h-2.95a15.7 15.7 0 0 0-1.38-3.12A8.05 8.05 0 0 1 18.93 8ZM12 4.04A14.1 14.1 0 0 1 13.91 8h-3.82A14.1 14.1 0 0 1 12 4.04ZM4.26 14A8.37 8.37 0 0 1 4 12c0-.69.09-1.36.26-2h3.36A16.45 16.45 0 0 0 7.5 12c0 .68.04 1.35.12 2H4.26Zm.81 2h2.95c.33 1.15.8 2.2 1.38 3.12A8.05 8.05 0 0 1 5.07 16Zm2.95-8H5.07A8.05 8.05 0 0 1 9.4 4.88 15.7 15.7 0 0 0 8.02 8ZM12 19.96A14.1 14.1 0 0 1 10.09 16h3.82A14.1 14.1 0 0 1 12 19.96ZM14.34 14H9.66A14.7 14.7 0 0 1 9.5 12c0-.69.06-1.36.16-2h4.68c.1.64.16 1.31.16 2s-.06 1.36-.16 2Zm.26 5.12A15.7 15.7 0 0 0 15.98 16h2.95a8.05 8.05 0 0 1-4.33 3.12ZM16.38 14c.08-.65.12-1.32.12-2s-.04-1.35-.12-2h3.36c.17.64.26 1.31.26 2s-.09 1.36-.26 2h-3.36Z"/></svg>
          </div>
          <h2>Web principal</h2>
          <div class="line"></div>
          <p class="url">https://anpemurcia.es</p>
          <span class="cta">Ir a la web</span>
        </a>

        <a class="card green" href="https://tudelegado.online/tickets_clientes/tickets/form.php" aria-label="Acceder a consulta con tu delegado">
          <div class="icon" aria-hidden="true">
            <svg viewBox="0 0 24 24"><path d="M12 1a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h1v-6H6V9a6 6 0 1 1 12 0v1h-2v6h1a3 3 0 0 0 3-3V9a8 8 0 0 0-8-8Zm-3 10v2a3 3 0 0 0 6 0v-2H9Zm-2 9c0-2.21 3.58-4 5-4s5 1.79 5 4v1H7v-1Z"/></svg>
          </div>
          <h2>Consulta con tu delegado</h2>
          <div class="line"></div>
          <p class="url">https://tudelegado.online/tickets_clientes/tickets/form.php</p>
          <span class="cta">Hacer consulta</span>
        </a>
      </div>

      <div class="footer-values" aria-label="Valores ANPE Murcia">
        <span class="value">
          <svg viewBox="0 0 24 24"><path d="M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3Zm0 2.18 6 2.25V11c0 4.35-2.78 8.42-6 9.86C8.78 19.42 6 15.35 6 11V6.43l6-2.25Z"/></svg>
          Te representamos
        </span>
        <span class="value">
          <svg viewBox="0 0 24 24"><path d="M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-3.31 0-6 1.34-6 3v2h12v-2c0-1.66-2.69-3-6-3Zm7-1a3 3 0 1 0-2.83-4 5.97 5.97 0 0 1-1.2 3.84c.87.15 1.68.4 2.39.73A5.7 5.7 0 0 1 19 13Zm-14 0a5.7 5.7 0 0 1 1.64.57c.71-.33 1.52-.58 2.39-.73A5.97 5.97 0 0 1 7.83 9 3 3 0 1 0 5 13Z"/></svg>
          Te informamos
        </span>
        <span class="value">
          <svg viewBox="0 0 24 24"><path d="M16.5 6.5 13 10l1 1 3.5-3.5L21 11V7.5L17.5 4H14l2.5 2.5ZM7.5 6.5 11 10l-1 1-3.5-3.5L3 11V7.5L6.5 4H10L7.5 6.5ZM12 13l3 3-3 3-3-3 3-3Z"/></svg>
          Te defendemos
        </span>
        <span class="value">
          <svg viewBox="0 0 24 24"><path d="M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5A5.45 5.45 0 0 1 7.5 3c1.74 0 3.41.81 4.5 2.09A5.98 5.98 0 0 1 16.5 3 5.45 5.45 0 0 1 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z"/></svg>
          Estamos contigo
        </span>
      </div>
    </section>
  </main>
</body>
</html>