<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Elige un agente</title>
  <style>
    body {
      font-family: sans-serif;
      text-align: center;
      padding: 2rem;
    }
    .button {
      display: block;
      margin: 1rem auto;
      padding: 1rem 2rem;
      background-color: #25d366;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1.2rem;
      text-decoration: none;
      width: 80%;
      max-width: 300px;
    }
  </style>
</head>
<body>
  <h2>¿Con quién deseas cotizar?</h2>
  <a class="button" href="https://wa.link/v5h4is">Andre Plata</a>
  <a class="button" href="https://wa.link/3sk988">Luz Hernandez</a>
</body>
</html>