.capcalera-parada {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.numero-parada {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 5px 10px;
    border-radius: 6px;

    background: #dff4f6;
    color: #111;

    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.enlace-mapa-parada {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 6px 11px;
    border-radius: 6px;

    background: #f2f2f2;
    color: #333;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;

    text-decoration: none;
    transition: background-color 0.2s ease;
}

.enlace-mapa-parada:hover {
    background: #e4e4e4;
    color: #111;
}

.numero-parada .icono,
.enlace-mapa-parada .icono {
    line-height: 1;
}