<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Botón COL</title>
<style>
body {
margin: 0;
padding: 40px;
background: #111;
font-family: Arial, Helvetica, sans-serif;
}
.boton-col {
display: inline-flex;
align-items: center;
gap: 22px;
padding: 18px 26px 18px 22px;
background: #f5f5f5;
border-radius: 24px;
text-decoration: none;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.boton-col:hover {
transform: translateY(-1px);
box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
.boton-col:active {
transform: translateY(0);
}
.bandera-col {
width: 112px;
height: 102px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
flex-shrink: 0;
}
.bandera-col .amarillo {
height: 50%;
background: #f4f000;
}
.bandera-col .azul {
height: 25%;
background: #5b9bd5;
}
.bandera-col .rojo {
height: 25%;
background: #ff1e1e;
}
.texto-col {
font-size: 110px;
font-weight: 900;
line-height: 1;
color: #000;
letter-spacing: 1px;
text-transform: uppercase;
}
@media (max-width: 768px) {
.boton-col {
gap: 14px;
padding: 14px 18px 14px 16px;
border-radius: 18px;
}
.bandera-col {
width: 78px;
height: 70px;
}
.texto-col {
font-size: 64px;
}
}
</style>
</head>
<body>
<a
class="boton-col"
href="https://bienestarlifehuni.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="Abrir Bienestar Life Huni en otra pestaña"
>
<span class="bandera-col" aria-hidden="true">
<div class="amarillo"></div>
<div class="azul"></div>
<div class="rojo"></div>
</span>
<span class="texto-col">COL</span>
</a>
</body>
</html>











