<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Grupo Y</title>
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
  }

  .logo {
    max-width: 200px;
    margin: 20px auto;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .card {
    border-top: 1px solid #ccc;
    padding: 20px 0;
  }

  .card img {
    max-width: 150px;
    margin-bottom: 10px;
  }

  .card h2 {
    font-size: 18px;
    margin: 10px 0 5px;
    font-weight: bold;
  }

  .card p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .card a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 4px;
    font-weight: bold;
  }

  .convey a {
    background-color: #f7a600;
  }

  .urby a {
    background-color: #00b5e2;
  }

  .poliway a {
    background-color: #8224e3;
  }

  @media (min-width: 768px) {
    .container {
      width: 80%;
    }

    .cards {
      flex-direction: row;
      justify-content: space-between;
    }

    .card {
      width: 30%;
      border-top: none;
      border-left: 1px solid #ccc;
      padding: 0 10px;
    }

    .card:first-child {
      border-left: none;
    }
  }
</style>

</head>
<body>
  <div class="container">
    <h1>AHORA SOMOS</h1>
    <img class="logo" src="https://grupoy.com.co/wp-content/uploads/2023/09/Logo-Principal-GrupoY-img-color.png" alt="Logo Grupo Y" />

    <p>Seguimos con una visión sólida y nuestras líneas de negocio nos permiten ofrecer soluciones integrales en el mercado.</p>

    <div class="cards">
      <div class="card convey">
        <img src="https://convey.com.co/wp-content/uploads/2024/06/Logo-Convey-ppal-GrupoY.png" alt="Logo Convey">
        <h2>Bandas transportadoras</h2>
        <p>Industriales para material pesado.</p>
        <a href="https://convey.com.co/" target="_blank">Conoce más</a>
      </div>

      <div class="card urby">
        <img src="https://urby.com.co/wp-content/uploads/2023/12/logo-urby-06.png" alt="Logo Urby">
        <h2>Apoyos, Aisladores y Juntas</h2>
        <p>Para infraestructuras.</p>
        <a href="https://urby.com.co/" target="_blank">Conoce más</a>
      </div>

      <div class="card poliway">
        <img src="https://poliway.com.co/wp-content/uploads/2025/07/Logos-10-1024x528.png" alt="Logo Poliway">
        <h2>Evas, Gomas y Caucho</h2>
        <p>Insumos para el calzado, pisos y eléctricos.</p>
        <a href="https://poliway.com.co/" target="_blank">Conoce más</a>
      </div>
    </div>
  </div>
</body>
</html>